Skip to content

Commit 2688700

Browse files
committed
v1.0.1
1 parent 09feb42 commit 2688700

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
with open("README.rst", "r") as readme_file:
66
README = readme_file.read()
77

8+
exec(open("src/matching/version.py", "r").read())
9+
810
setup(
911
name="matching",
10-
version="1.0",
12+
version=__version__,
1113
description="A package for solving matching games.",
1214
long_description=README,
1315
url="https://github.com/daffidwilde/matching",

src/matching/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0"
1+
__version__ = "1.0.1"

0 commit comments

Comments
 (0)