Skip to content

Commit

Permalink
test against python 3.8 (#40)
Browse files Browse the repository at this point in the history
* add python 3.7 classifier

* add python 3.8

* test against python 3.8

stop testing against python 3.4 (EOL)

* travis: build on ubuntu bionic

* bump year

* add python3-pygame for build dependencies

* update year

* try py2 version

* add more pygame deps

* travis: even more pygame deps

* revert change

Co-authored-by: Richard Hull <rm_hull@yahoo.co.uk>
  • Loading branch information
thijstriemstra and rm-hull committed Mar 26, 2020
1 parent 6e79803 commit 3e5bb6c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
19 changes: 17 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist: xenial
dist: bionic
language: python
cache: pip

Expand All @@ -12,14 +12,29 @@ matrix:
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.5
env: TOXENV=qa,doc

addons:
apt:
packages:
- graphviz
- python-pygame
- libsdl-dev
- python3-dev
- python3-numpy
- libsdl-image1.2-dev
- libsdl-mixer1.2-dev
- libsdl-ttf2.0-dev
- libsmpeg-dev
- libportmidi-dev
- libavformat-dev
- libswscale-dev
- libjpeg-dev
- libfreetype6-dev

install: pip install --upgrade --ignore-installed setuptools pip tox coveralls
script: tox -vv
after_success: if [ "$TOXENV" == "py36" ]; then coveralls; fi
after_success: if [ "$TOXENV" == "py38" ]; then coveralls; fi
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)
---------------------

Copyright (c) 2017-2019 Richard Hull and contributors
Copyright (c) 2017-2020 Richard Hull and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Luma.Emulator
.. image:: https://img.shields.io/pypi/v/luma.emulator.svg
:target: https://pypi.python.org/pypi/luma.emulator

.. image:: https://img.shields.io/maintenance/yes/2019.svg?maxAge=2592000
.. image:: https://img.shields.io/maintenance/yes/2020.svg?maxAge=2592000

**luma.emulator** provides a series of pseudo-display devices which allow
the `luma.core <https://github.com/rm-hull/luma.core>`_ components to be used
Expand Down Expand Up @@ -56,7 +56,7 @@ License
-------
The MIT License (MIT)

Copyright (c) 2017-2019 Richard Hull and contributors
Copyright (c) 2017-2020 Richard Hull and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Copyright (c) 2017-18 Richard Hull and contributors
# Copyright (c) 2017-2020 Richard Hull and contributors
# See LICENSE.rst for details.

[tox]
envlist = py{27,35,36,37},qa,doc
envlist = py{27,35,36,37,38},qa,doc
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 3e5bb6c

Please sign in to comment.