Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
Adding python3 to osx builds
  • Loading branch information
Xonshiz committed Jun 13, 2021
1 parent 7c93412 commit 5e0e5dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ matrix:
branch: master
- os: windows
language: sh
python: "3.8"
python: 3.8
before_install:
- choco install python --version 3.8.0
- python --version
Expand Down Expand Up @@ -103,17 +103,17 @@ matrix:
branch: master
- os: osx
language: sh
python: "3.8"
python: 3.8
before_install:
- python --version
- python -m pip install --upgrade pip
- python3 --version
- python3 -m pip install --upgrade pip
install:
- "pip install -r requirements.txt"
- "pip uninstall -y enum34"
- "pip install pyinstaller"
script:
- cd comic_dl
- python __main__.py --version
- python3 __main__.py --version
- pyinstaller --onefile --hidden-import=queue "__main__.py" -n "comic_dl_osx"
- export huluVersion=`cat version.txt`
- cd ..
Expand Down

0 comments on commit 5e0e5dd

Please sign in to comment.