fix: nightly package version
The package version number may not include the "-nightly" suffix. Otherwise, installation fails with: setuptools.extern.packaging.version.InvalidVersion: Invalid version: '15.0.7-nightly'
This commit is contained in:
parent
5d6580c82b
commit
a7ad3758b5
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ with io.open(
|
||||
|
||||
setup(
|
||||
name="tutor-notes",
|
||||
version=about["__version__"],
|
||||
version=about["__package_version__"],
|
||||
url="https://docs.tutor.overhang.io/",
|
||||
project_urls={
|
||||
"Documentation": "https://docs.tutor.overhang.io/",
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
__version__ = "15.0.4"
|
||||
__package_version__ = __version__
|
||||
|
||||
# Handle version suffix for nightly, just like tutor core.
|
||||
__version_suffix__ = "nightly"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user