Skip to content

Commit 6778d69

Browse files
committed
fix file path
1 parent c24fc59 commit 6778d69

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
from distutils.core import Extension, setup
33
from pathlib import Path
44

5-
VERSIONFILE = "myniftyapp/_version.py"
5+
# from https://stackoverflow.com/a/7071358/2750945
6+
VERSIONFILE = "pyrp3/_version.py"
67
verstrline = open(VERSIONFILE, "rt").read()
78
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
89
mo = re.search(VSRE, verstrline, re.M)

0 commit comments

Comments
 (0)