Skip to content

Commit

Permalink
fix version loading during the release
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasForst committed Nov 6, 2022
1 parent 21c967f commit 14e7ea0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ def determine_version(default: str = "0.0.1") -> str:
return maybe_version


version = determine_version()

# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.

Expand All @@ -54,7 +52,7 @@ def determine_version(default: str = "0.0.1") -> str:
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/guides/single-sourcing-package-version/
version="0.0.1", # Required
version=determine_version(), # Required
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
# https://packaging.python.org/specifications/core-metadata/#summary
Expand Down

0 comments on commit 14e7ea0

Please sign in to comment.