Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Python 3 for package build. #3258

Merged
merged 1 commit into from
Mar 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,6 @@ jobs:
- deploy:
name: Update the docs
command: nox -e docs
- deploy:
name: Setup to Push to PyPI
command: |
if [[ -n "$CIRCLE_TAG" ]]; then
pip install --upgrade setuptools twine
fi
- deploy:
name: Push to PyPI (if this is a release tag).
command: test_utils/scripts/circleci/twine_upload.sh
Expand Down
4 changes: 3 additions & 1 deletion test_utils/scripts/circleci/twine_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ PKG_DIR="$(python ${SCRIPT})"

# Move into the package, build the distribution and upload.
cd ${PKG_DIR}
python setup.py sdist bdist_wheel
python3 setup.py sdist bdist_wheel

pip3 install twine
twine upload dist/*