2018-03-24 12:23:25 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-setuptools_scm: updated to 1.17.0
v1.17.0:
fix regression in git support - use a function to ensure it works in egg \
isntalled mode
actually fail if file finding fails in order to see broken setups instead of \
generating broken dists
v1.16.2:
fix regression in handling git export ignores
v1.16.1
fix regression in support for old setuptools versions
v1.16.0
drop support for eol python versions
fix missuse in surogate-escape api
add the node-and-timestamp local version sheme
respect git export ignores
avoid shlex.split on windows
fix #218 - better handling of mercurial edge-cases with tag commits being \
considered as the tagged commit
fix #223 - remove the dependency on the interal SetupttoolsVersion as it was \
removed after long-standing deprecation
|
2018-01-19 11:04:36 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-setuptools_scm: updated to 1.15.7
v1.15.7
Re-use samefile backport as developed in jaraco.windows, and only use the \
backport where samefile is not available.
|
2017-06-16 09:02:32 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
v1.15.6
* fix issue-171 by unpinning the py version to allow a fixed one to get installed
|
2017-04-19 19:30:27 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated py-setuptools_scm to 1.15.5.
v1.15.5
=======
* fix #167 by correctly respecting preformatted version metadata
from PKG-INFO/EGG-INFO
v1.15.4
=======
* fix issue #164: iterate all found entry points to avoid erros when pip remakes \
egg-info
* enhance self-use to enable pip install from github again
v1.15.3
=======
* bring back correctly getting our version in the own sdist, finalizes #114
* fix issue #150: strip local components of tags
v1.15.2
=======
* fix issue #128: return None when a scm specific parse fails in a worktree to \
ease parse reuse
v1.15.1
=======
* fix issue #126: the local part of any tags is discarded
when guessing new versions
* minor performance optimization by doing fewer git calls
in the usual cases
|
2016-10-29 01:28:21 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
Updated py-setuptools_scm to 1.15.0.
v1.15.0
=======
* more sophisticated ignoring of mercurial tag commits
when considering distance in commits
(thanks Petre Mierlutiu)
* fix issue #114: stop trying to be smart for the sdist
and ensure its always correctly usign itself
* update trove classifiers
* fix issue #84: document using the installed package metadata for sphinx
* fix issue #81: fail more gracious when git/hg are missing
* address issue #93: provide an experimental api to customize behaviour on \
shallow git repos
a custom parse function may pick pre parse actions to do when using git
v1.14.1
=======
* fix #109: when detecting a dirty git workdir
don't consider untracked file
(this was a regression due to #86 in v1.13.1)
* consider the distance 0 when the git node is unknown
(happens when you haven't commited anything)
|
2016-10-19 15:55:53 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated py-setuptools_scm to 1.14.0.
v1.14.0
=======
* publish bdist_egg for python 2.6, 2.7 and 3.3-3.5
* fix issue #107 - dont use node if it is None
|
2016-10-09 23:25:32 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated py-setuptools_scm to 1.13.0.
v1.13.0
=======
* fix regression caused by the fix of #101
* assert types for version dumping
* strictly pass all versions trough parsed version metadata
v1.12.0
=======
* fix issue #97 - add support for mercurial plugins
* fix issue #101 - write version cache even for pretend version
(thanks anarcat for reporting and fixing)
|
2016-09-12 19:31:55 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
Changes 1.11.1:
* fix issue 88 - better docs for sphinx usage
* fix issue 89 - use normpath to deal with windows
|
2016-08-28 17:48:37 by Thomas Klausner | Files touched by this commit (112) |
Log message:
Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided
by the infrastructure.
Mark a couple more packages as not ready for python-3.x.
|
2016-01-06 06:30:56 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update setuptools_scm to 1.10.1:
v1.10.1
=======
* fix issue #73 - in hg pre commit merge, consider parent1 instead of failing
v1.10.0
=======
* add support for overriding the version number via the
environment variable SETUPTOOLS_SCM_PRETEND_VERSION
* fix isssue #63 by adding the --match parameter to the git describe call
and prepare the possibility of passing more options to scm backends
* fix issue #70 and #71 by introducing the parse keyword
to specify custom scm parsing, its an expert feature,
use with caution
this change also introduces the setuptools_scm.parse_scm_fallback
entrypoint which can be used to register custom archive fallbacks
v1.9.0
======
* Add :code:`relative_to` parameter to :code:`get_version` function;
fixes #44 per #45.
v1.8.0
======
* fix issue with setuptools wrong version warnings being printed to standard
out. User is informed now by distutils-warnings.
* restructure root finding, we now reliably ignore outer scm
and prefer PKG-INFO over scm, fixes #43 and #45
v1.7.0
======
* correct the url to github
thanks David Szotten
* enhance scm not found errors with a note on git tarballs
thanks Markus
* add support for :code:`write_to_template`
|