From 8958b8c17741d5ec666de869ac87b5cbceac02d8 Mon Sep 17 00:00:00 2001 From: Toby Roseman Date: Fri, 13 Dec 2019 13:54:23 -0800 Subject: [PATCH] More changes for generating an egg (#2853) --- src/unsupported_python/README.md | 9 +++++++++ src/unsupported_python/setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 src/unsupported_python/README.md diff --git a/src/unsupported_python/README.md b/src/unsupported_python/README.md new file mode 100644 index 0000000000..4fab0454fd --- /dev/null +++ b/src/unsupported_python/README.md @@ -0,0 +1,9 @@ +An egg only needs to be uploaded to PyPI when we want to change the unsupported error message. If we're not changing what platforms or Python versions we support, we shouldn't upload an egg. + +To generate the egg: + +* Update the value of `VERSION` in `setup.py` + +* Run `python setup.py sdist` + +The egg (a `.tar.gz` file) will be located in the `dist` folder. diff --git a/src/unsupported_python/setup.py b/src/unsupported_python/setup.py index 4549a60c4d..b0f91e9b57 100644 --- a/src/unsupported_python/setup.py +++ b/src/unsupported_python/setup.py @@ -11,7 +11,7 @@ from setuptools.command.install import install PACKAGE_NAME="turicreate" -VERSION='5.7' +VERSION='6.0' class InstallEngine(install): def run(self):