Skip to content

Commit 7338eaa

Browse files
author
Hugo Briand
committed
fix: case sensitivity for README.md in publishing
1 parent 48f25fd commit 7338eaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include Readme.md
1+
include README.md
22
include version.txt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def version():
1212

1313
# Try to parse tag from CI variable, if set write version.txt file with current version
1414
if ci_tag is not None:
15-
if re.match('\d+(\.\d+)*', ci_tag):
15+
if re.match(r'\d+(\.\d+)*', ci_tag):
1616
with open('version.txt', 'w+') as f:
1717
f.write(ci_tag)
1818
return ci_tag

0 commit comments

Comments
 (0)