Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe and test Python support for 3.5+ #93

Merged
merged 3 commits into from Sep 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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