Skip to content

Commit

Permalink
Try forcing Travis to deploy with Python 2.7
Browse files Browse the repository at this point in the history
The latest python tooling has changed and seems to no longer support generating universal wheels. Maybe. It's not clear. But when I locally ``python setup.py sdist bdist_wheel``, I get a universal wheel from python2. But python 3.8 generates an "Instrumental_lib-0.6-cp38-cp38-linux_x86_64.whl", which PyPI refuses to accept. Maybe the newest versions of wheel/setuptools/whatever no longer support generating universal wheels. I have no idea. I just want the pain to stop.
  • Loading branch information
natezb committed Aug 30, 2020
1 parent ce9e7b9 commit cbf6395
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ deploy:
distributions: "sdist bdist_wheel"
on:
tags: true
python: "3.6"
python: "2.7"
skip_existing: true

0 comments on commit cbf6395

Please sign in to comment.