Skip to content

Commit

Permalink
Merge dd853f2 into fffce26
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Apr 12, 2019
2 parents fffce26 + dd853f2 commit bd5c767
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .travis.yml
@@ -1,16 +1,28 @@
language: python
sudo: required
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- pypy2.7-6.0.0
- pypy3.5-6.0.0
before_install:
- sudo apt-get update -q
- sudo apt-get build-dep -y python-pygame
- pip install -U pip
- |
include_dir=/home/travis/virtualenv/$TRAVIS_PYTHON_VERSION/include
if [ -L $include_dir ]; then
# pygame tries to install stuff into $include_dir/site/pygame,
# which will not work if $include_dir is a symlink to a read-only
# system-wide include dir as is the case for pypy2.7 and pypy3.5
# (but not cpython for some reason)
real_include_dir=$(readlink $include_dir)
rm $include_dir
cp -r $real_include_dir $include_dir
fi
install:
- pip install coverage coveralls -e .
script:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -59,6 +59,8 @@ def determine_version():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Games/Entertainment :: Arcade',
],
scripts=['pyspacewar'],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,py37,py27-numpy,py37-numpy
py27,py34,py35,py36,py37,py27-numpy,py37-numpy,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit bd5c767

Please sign in to comment.