Skip to content

Commit 38034fe

Browse files
authored
Merge pull request #31 from tekktrik/dev/fix-toml
Fix pyproject.toml for dynamic __version population
2 parents 4a9a830 + 90de2e0 commit 38034fe

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-sht31d"
1414
description = "CircuitPython library for SHT31-D temperature and humidity sensor."
15+
version = "0.0.0-auto.0"
1516
readme = "README.rst"
1617
authors = [
1718
{name = "Adafruit Industries", email = "[email protected]"}
@@ -37,12 +38,10 @@ classifiers = [
3738
"License :: OSI Approved :: MIT License",
3839
"Programming Language :: Python :: 3",
3940
]
40-
dynamic = ["version", "dependencies"]
41+
dynamic = ["dependencies"]
4142

4243
[tool.setuptools]
4344
py-modules = ["adafruit_sht31d"]
4445

4546
[tool.setuptools.dynamic]
4647
dependencies = {file = ["requirements.txt"]}
47-
48-
[tool.setuptools_scm]

0 commit comments

Comments
 (0)