We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f25fd commit 7338eaaCopy full SHA for 7338eaa
MANIFEST.in
@@ -1,2 +1,2 @@
1
-include Readme.md
+include README.md
2
include version.txt
setup.py
@@ -12,7 +12,7 @@ def version():
12
13
# Try to parse tag from CI variable, if set write version.txt file with current version
14
if ci_tag is not None:
15
- if re.match('\d+(\.\d+)*', ci_tag):
+ if re.match(r'\d+(\.\d+)*', ci_tag):
16
with open('version.txt', 'w+') as f:
17
f.write(ci_tag)
18
return ci_tag
0 commit comments