Skip to content

Commit 5492bbf

Browse files
authored
Merge pull request #54 from Chia-Network/scm-zip-download-fix
Fix problem with zip download.
2 parents fa6828e + 5cdb1b0 commit 5492bbf

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
**Note** due to the use of `setuptools-scm`, you must clone the repo.
2-
**Downloading the zip file provided by github will not work** as the `.git` metadata used to calculate the
3-
version number is not present in the zip file.
4-
51
# chia-blockchain
62
Python 3.7 is used for this project. Make sure your default python version is >=3.7 by typing python3.
73

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
keywords="chia blockchain node",
2323
install_requires=dependencies + dev_dependencies,
2424
setup_requires=["setuptools_scm"],
25-
use_scm_version=True,
25+
use_scm_version={"fallback_version": "unknown-no-.git-directory"},
2626
long_description=open("README.md").read(),
2727
zip_safe=False,
2828
)

0 commit comments

Comments
 (0)