Skip to content

Commit

Permalink
Pin setuptools_scm version to avoid flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Sep 29, 2023
1 parent 75ffa2e commit d9ba545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools>=45.0",
# sync with setup.cfg until we discard non-pep-517/518
"setuptools-scm[toml]>=5.0.0",
"setuptools-scm[toml]<8.0.3", # pin until https://github.com/pypa/setuptools_scm/issues/932 is resolved
"wheel",
]
build-backend = "setuptools.build_meta"
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ project_urls =
[options]
packages = pytest_django
python_requires = >=3.8
setup_requires = setuptools_scm>=5.0.0
# pin until https://github.com/pypa/setuptools_scm/issues/932 is resolved
setup_requires = setuptools_scm<8.0.3
install_requires = pytest>=5.4.0
zip_safe = no

Expand Down

0 comments on commit d9ba545

Please sign in to comment.