Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
More changes for generating an egg (#2853)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyRoseman authored Dec 13, 2019
1 parent a134fb4 commit 8958b8c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/unsupported_python/README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion src/unsupported_python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 8958b8c

Please sign in to comment.