Closed rossjjennings closed 1 year ago
Changes the line version = "0.1.0" in pyproject.toml to dynamic = ["version"]. This should keep the automatic PyPI build from failing the way it did here, where it built a wheel for v0.1.0 and PyPI rejected it because the version already existed.
version = "0.1.0"
pyproject.toml
dynamic = ["version"]
Changes the line
version = "0.1.0"
inpyproject.toml
todynamic = ["version"]
. This should keep the automatic PyPI build from failing the way it did here, where it built a wheel for v0.1.0 and PyPI rejected it because the version already existed.