Skip to content

Commit

Permalink
build: fix scheduled deployment build for windows (temporary fix)[ski…
Browse files Browse the repository at this point in the history
…p ci]
  • Loading branch information
hoffstadt committed Dec 3, 2021
1 parent a700899 commit 237b304
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ def version_number():
return wip_version
try:
with open('version_number.txt', encoding='utf-8') as f:
return f.readline().rstrip()
version = f.readline().rstrip()

# temporary fix fox CI issues with windows
if(version.startswith("ECHO")):
return "0.0.1"

return version

except IOError:
return wip_version
Expand Down

0 comments on commit 237b304

Please sign in to comment.