Skip to content

Commit

Permalink
check if setuptools-git-versioning is breaking pdm
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinevg committed May 16, 2024
1 parent 04f4c99 commit ec329f6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=64", "setuptools-git-versioning<2"]
requires = ["setuptools>=64"] #, "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -27,7 +27,8 @@ classifiers = [
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
]

dynamic = ["version"]
#dynamic = ["version"]
version = "0.2.0"

dependencies = [
"apollo_fpga @ git+https://github.com/greatscottgadgets/apollo.git", # temporarily pull from git until apollo release
Expand All @@ -51,6 +52,6 @@ include = ["*"]
[tool.pdm.scripts]
test.cmd = "python -m unittest discover -t . -s tests -v"

[tool.setuptools-git-versioning]
enabled = true
starting_version = "0.0.1"
#[tool.setuptools-git-versioning]
#enabled = true
#starting_version = "0.0.1"

0 comments on commit ec329f6

Please sign in to comment.