We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09feb42 commit 2688700Copy full SHA for 2688700
setup.py
@@ -5,9 +5,11 @@
5
with open("README.rst", "r") as readme_file:
6
README = readme_file.read()
7
8
+exec(open("src/matching/version.py", "r").read())
9
+
10
setup(
11
name="matching",
- version="1.0",
12
+ version=__version__,
13
description="A package for solving matching games.",
14
long_description=README,
15
url="https://github.com/daffidwilde/matching",
src/matching/version.py
@@ -1 +1 @@
1
-__version__ = "1.0"
+__version__ = "1.0.1"
0 commit comments