Skip to content

Commit

Permalink
Compatibility fix for latest tox and setuptools (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 authored Oct 3, 2024
1 parent 73faf48 commit 9fdd827
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,3 @@ formats = "bdist_wheel"

[tool.flake8]
exclude = [".tox", "build", "dist", ".eggs", "docs/conf.py"]

[tool.setuptools_scm]
version_scheme = "setup:version_scheme"
local_scheme = "setup:local_scheme"
root = ".."
2 changes: 1 addition & 1 deletion cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def local_scheme(version) -> str:


if __name__ == "__main__":
setup(use_scm_version={"root": "..", "relative_to": __file__})
setup(use_scm_version={"root": "..", "relative_to": __file__, "local_scheme": local_scheme, "version_scheme": version_scheme})

0 comments on commit 9fdd827

Please sign in to comment.