Skip to content

Commit

Permalink
Merge pull request #93 from altendky/more_pythons
Browse files Browse the repository at this point in the history
Describe and test Python support for 3.5+
  • Loading branch information
altendky committed Sep 30, 2020
2 parents 174c1fa + 21b98ab commit 3de7e7f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .travis.yml
@@ -1,5 +1,17 @@
language: python
python: 3.7

matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.9-dev
env: TOXENV=py39

install:
- pip install tox
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -46,6 +46,7 @@ def find_version(*file_paths):
long_description=long_description,
long_description_content_type="text/markdown",
version=find_version('PyQt5-stubs', '__init__.pyi'),
python_requires=">= 3.5",
package_data={"PyQt5-stubs": ['*.pyi']},
packages=["PyQt5-stubs"],
tests_require=["PyQt5==5.14.*"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py37
envlist = py3{5,6,7,8,9}

[testenv]
deps =
Expand Down

0 comments on commit 3de7e7f

Please sign in to comment.