Releases: pypa/setuptools-scm
Releases · pypa/setuptools-scm
v7.0.1: Merge pull request #719 from kojiromike/missing-importlib
Fix Missing importlib_metadata in <=3.7
v7.0.0
pre-commit update
v6.4.2: Merge pull request #672 from RonnyPfannschmidt/fix-python-360
fix #671: hide NoReturn from very old python 3.6
v6.4.1
v6.4.0
- compatibility adjustments for setuptools >58
- only put minimal setuptools version into toml extra to warn people with old strict pins
- correctly handle hg-git self-use
- better mercurial detection
- modernize packaging setup
- python 3.10 support
- better handling of setuptools install command deprecation
- consider
pyproject.tomls
when running as command - use list in git describe command to avoid shell expansions while supporting both windows and posix
- add
--strip-dev
flag topython -m setuptools_scm
to print the next guessed version cleanly - ensure no-guess-dev will fail on bad tags instead of generating invalid versions
- ensure we use utc everywhere to avoid confusion
v6.3.2
Update CHANGELOG.rst
v6.3.1: 6.3.1
===== * fix #625: restore tomli in install_requires after the regression changes in took it out and some users never added it even tho they have pyproject.toml files
v6.3.0: 6.3.0
======= .. warning:: This release explicitly warns on unsupported setuptools. This unfortunately has to happen as the legacy ``setup_requires`` mechanism incorrectly configures the setuptools working-set when a more recent setuptools version than available is required. As all releases of setuptools are affected as the historic mechanism for ensuring a working setuptools setup was shipping a ``ez_setup`` file next to ``setup.py``, which would install the required version of setuptools. This mechanism has long since been deprecated and removed as most people haven't been using it. * fix #612: depend on packaging to ensure version parsing parts * fix #611: correct the typo that hid away the toml extra and add it in ``setup.py`` as well * fix #615: restore support for the git_archive plugin which doesn't pass over the config * restore the ability to run on old setuptools while to avoid breaking pipelines
v5.0.1
Merge pull request #509 from RonnyPfannschmidt/fix-507-dist-metadata-…
v5.0.0: Merge pull request #506 from MarkusH/patch-1
Breaking changes:
- fix #339: strict errors on missing scms when parsing a scm dir to avoid false version lookups
- fix #337: if relative_to is a directory instead of a file,
consider it as direct target instead of the containing folder and print a warning
Bugfixes:
- fix #352: add support for generally ignoring specific vcs roots
- fix #471: better error for version bump failing on complex but accepted tag
- fix #479: raise indicative error when tags carry non-parsable information
- Add
no-guess-dev
which does no next version guessing, just adds.post1.devN
in
case there are new commits after the tag - add python3.9
- enhance documentation
- consider SOURCE_DATE_EPOCH for versioning
- add a version_tuple to write_to templates
- fix #321: add suppport for the
SETUPTOOLS_SCM_PRETEND_VERSION_FOR_${DISTRIBUTION_NAME}
env var to target the pretend key - fix #142: clearly list supported scm
- fix #213: better error message for non-zero dev numbers in tags
- fix #356: add git branch to version on describe failure