Skip to content

Commit f1f98dd

Browse files
fix setup.py verison
1 parent f835cd5 commit f1f98dd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
from setuptools import find_packages
55
from setuptools import setup
66

7+
exec(compile(open("pioreactor/version.py").read(), "pioreactor/version.py", "exec"))
8+
79

810
CORE_REQUIREMENTS = [
911
"click==8.1.7",
@@ -53,7 +55,7 @@
5355

5456
setup(
5557
name="pioreactor",
56-
version="24.10.15dev0",
58+
version=__version__, # type: ignore # noqa: F821
5759
license="MIT",
5860
description="The core Python app of the Pioreactor. Control your bioreactor through Python.",
5961
url="https://github.com/pioreactor/pioreactor",

0 commit comments

Comments
 (0)