Skip to content

Commit

Permalink
Back to Xenial on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
gbtami committed Jul 5, 2020
1 parent b840f77 commit a31650a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -5,7 +5,7 @@ matrix:
include:
- os: linux
sudo: required
dist: bionic
dist: xenial
language: generic
env: PYTHON="python3" PACKAGES="python3-cairo python3-gi python3-gi-cairo python3-sqlalchemy python3-psutil python3-websockets python3-pip stockfish"

Expand Down
4 changes: 2 additions & 2 deletions pychess
Expand Up @@ -43,8 +43,8 @@ if not getattr(sys, 'frozen', False):
pass

# Check requirements
if sys.version_info < (3, 5, 3):
print('ERROR: PyChess requires Python >= 3.5.3')
if sys.version_info < (3, 5, 0):
print('ERROR: PyChess requires Python >= 3.5.0')
sys.exit(1)

try:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -27,8 +27,8 @@
else:
from distutils.core import setup

if sys.version_info < (3, 5, 3):
print('ERROR: PyChess requires Python >= 3.5.3')
if sys.version_info < (3, 5, 0):
print('ERROR: PyChess requires Python >= 3.5.0')
sys.exit(1)

if sys.platform == "win32":
Expand Down

0 comments on commit a31650a

Please sign in to comment.