forked from pypa/setuptools-scm
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix 587 file finding no commit #4
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for more information, see https://pre-commit.ci
[pre-commit.ci] pre-commit autoupdate
Use slimmer and more modern APIs
README: remove incorrect mention of pkg_resources
for more information, see https://pre-commit.ci
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/PyCQA/flake8: 3.9.0 → 3.9.1](PyCQA/flake8@3.9.0...3.9.1)
[pre-commit.ci] pre-commit autoupdate
Fix pypa#557 - Use packaging.version for version_tuple
Merge pull request pypa#586 from RonnyPfannschmidt/fix-585/switch-to-tomli
updates: - [github.com/asottile/pyupgrade: v2.19.4 → v2.20.0](asottile/pyupgrade@v2.19.4...v2.20.0)
[pre-commit.ci] pre-commit autoupdate
Use UTF-8 encoding when reading pyproject.toml
updates: - [github.com/asottile/pyupgrade: v2.20.0 → v2.21.0](asottile/pyupgrade@v2.20.0...v2.21.0)
[pre-commit.ci] pre-commit autoupdate
Support working on a Git repository with hg-git
updates: - [github.com/psf/black: 21.6b0 → 21.7b0](psf/black@21.6b0...21.7b0) - [github.com/asottile/pyupgrade: v2.21.0 → v2.21.2](asottile/pyupgrade@v2.21.0...v2.21.2)
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/asottile/pyupgrade: v2.21.2 → v2.23.0](asottile/pyupgrade@v2.21.2...v2.23.0)
[pre-commit.ci] pre-commit autoupdate
updates: - [github.com/asottile/pyupgrade: v2.23.0 → v2.23.1](asottile/pyupgrade@v2.23.0...v2.23.1)
[pre-commit.ci] pre-commit autoupdate
add mypy and reorder-python-imports to pre-commit
…tion drop pre-commit action as we use pre-commit.ci
updates: - [github.com/asottile/pyupgrade: v2.23.3 → v2.24.0](asottile/pyupgrade@v2.23.3...v2.24.0)
[pre-commit.ci] pre-commit autoupdate
on a repository without a commit we cannot tell the valid files, so we don't # Conflicts: # src/setuptools_scm/config.py # src/setuptools_scm/discover.py # src/setuptools_scm/git.py # src/setuptools_scm/utils.py # src/setuptools_scm/version.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
normalize
boolean flag and aNonNormalizedVersion
class. Usingnormalize=False
is equivalent to settingversion_cls=NonNormalizedVersion
. Updated tests, added readme and changelogNonNormalizedVersion
at the root level now that it moved to the config package.version_cls
can now receive a string too. Added a test for setuptools/git interaction around normalization