Skip to content

Commit dcf12f9

Browse files
committed
Fix pyproject.toml for dynamic __version population
1 parent 2a25d0b commit dcf12f9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ requires = [
1212
[project]
1313
name = "adafruit-circuitpython-ina219"
1414
description = "CircuitPython library for INA219 high side DC current sensor."
15+
version = "0.0.0-auto.0"
1516
readme = "README.rst"
1617
authors = [
1718
{name = "Adafruit Industries", email = "[email protected]"}
@@ -40,12 +41,10 @@ classifiers = [
4041
"License :: OSI Approved :: MIT License",
4142
"Programming Language :: Python :: 3",
4243
]
43-
dynamic = ["version", "dependencies"]
44+
dynamic = ["dependencies"]
4445

4546
[tool.setuptools]
4647
py-modules = ["adafruit_ina219"]
4748

4849
[tool.setuptools.dynamic]
4950
dependencies = {file = ["requirements.txt"]}
50-
51-
[tool.setuptools_scm]

0 commit comments

Comments
 (0)