We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f835cd5 commit f1f98ddCopy full SHA for f1f98dd
setup.py
@@ -4,6 +4,8 @@
4
from setuptools import find_packages
5
from setuptools import setup
6
7
+exec(compile(open("pioreactor/version.py").read(), "pioreactor/version.py", "exec"))
8
+
9
10
CORE_REQUIREMENTS = [
11
"click==8.1.7",
@@ -53,7 +55,7 @@
53
55
54
56
setup(
57
name="pioreactor",
- version="24.10.15dev0",
58
+ version=__version__, # type: ignore # noqa: F821
59
license="MIT",
60
description="The core Python app of the Pioreactor. Control your bioreactor through Python.",
61
url="https://github.com/pioreactor/pioreactor",
0 commit comments