Skip to content

Commit e35fe57

Browse files
authored
Merge pull request #30 from stlehmann/stlehmann-patch-testing
Fix CI by adding PyQt5 dependency to tox
2 parents 02a0b61 + 3d0bde5 commit e35fe57

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def find_version(*file_paths):
4848
version=find_version('PyQt5-stubs', '__init__.pyi'),
4949
package_data={"PyQt5-stubs": ['*.pyi']},
5050
packages=["PyQt5-stubs"],
51+
tests_require=["PyQt5==5.13.*"],
5152
classifiers=[
5253
"Development Status :: 4 - Beta",
5354
"Intended Audience :: Developers",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist = py36
55
deps =
66
mypy
77
pytest
8+
PyQt5==5.13.*
89
commands =
910
mypy -p PyQt5-stubs
1011
pytest {posargs}

0 commit comments

Comments
 (0)