Skip to content

Commit

Permalink
Fix Python 3.8 build support
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Oct 11, 2019
1 parent ceb66a6 commit 04221f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make-linux-release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
PYTHON_VERSIONS="cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38m"
PYTHON_VERSIONS="cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38"

cd /io
/opt/python/cp37-cp37m/bin/pip install poetry -U
Expand All @@ -11,5 +11,5 @@ cd /io
-P "3.5:/opt/python/cp35-cp35m/bin/python" \
-P "3.6:/opt/python/cp36-cp36m/bin/python" \
-P "3.7:/opt/python/cp37-cp37m/bin/python" \
-P "3.8:/opt/python/cp38-cp38m/bin/python"
-P "3.8:/opt/python/cp38-cp38/bin/python"
cd -

0 comments on commit 04221f8

Please sign in to comment.