Skip to content

Commit

Permalink
fix: Restrict setuptools_scm version
Browse files Browse the repository at this point in the history
  • Loading branch information
DownerCase committed Mar 12, 2024
1 parent 41a16fe commit fc92105
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 @@ -17,7 +17,8 @@ dynamic = ["version"]
"Source" = "https://github.com/eclipse-ecal/ecal"

[build-system] # How pip and other frontends should build this project
requires = ["scikit-build-core>=0.8", "setuptools_scm>=7"]
# Version 8 of setuptools_scm drops Python 3.7
requires = ["scikit-build-core>=0.8", "setuptools_scm~=7.1"]
build-backend = "scikit_build_core.build"

[tool.setuptools_scm]
Expand Down

0 comments on commit fc92105

Please sign in to comment.