Skip to content

Commit

Permalink
Un-pin setuptools_scm for Python 3.x
Browse files Browse the repository at this point in the history
Blocking current setuptools releases has blocked building on *current*
Python environments in the name of compatibility with EOL's 2.x releases.

Co-authored-by: Edgar Ramírez Mondragón <16805946+edgarrmondragon@users.noreply.github.com>
  • Loading branch information
alerque and edgarrmondragon committed Mar 2, 2024
1 parent 1ae8077 commit 2d73f7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ requires = [
"setuptools; python_version != '3.3'",
"setuptools<40.0; python_version == '3.3'",
"wheel",
"setuptools_scm<8.0"
"setuptools_scm; python_version >= '3.6'",
"setuptools_scm<8.0; python_version < '3.6'"
]
build-backend = "setuptools.build_meta"

Expand Down

0 comments on commit 2d73f7b

Please sign in to comment.