Skip to content

Commit

Permalink
fix setup.py verison
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Oct 29, 2024
1 parent f835cd5 commit f1f98dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
from setuptools import find_packages
from setuptools import setup

exec(compile(open("pioreactor/version.py").read(), "pioreactor/version.py", "exec"))


CORE_REQUIREMENTS = [
"click==8.1.7",
Expand Down Expand Up @@ -53,7 +55,7 @@

setup(
name="pioreactor",
version="24.10.15dev0",
version=__version__, # type: ignore # noqa: F821
license="MIT",
description="The core Python app of the Pioreactor. Control your bioreactor through Python.",
url="https://github.com/pioreactor/pioreactor",
Expand Down

0 comments on commit f1f98dd

Please sign in to comment.