Skip to content

Commit db260f2

Browse files
committed
Here's what happens if we add loads of non-types requirements
1 parent ca484c4 commit db260f2

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
cache: pip
8888
cache-dependency-path: requirements-tests.txt
8989
- run: pip install -r requirements-tests.txt
90-
- run: python ./tests/mypy_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }}
90+
- run: python ./tests/mypy_test.py --platform=${{ matrix.platform }} --python-version=${{ matrix.python-version }} --verbose
9191

9292
regression-tests:
9393
name: Run mypy on the test cases

stubs/Pillow/METADATA.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
requires = ["packaging"]
12
version = "9.3.*"

stubs/SQLAlchemy/METADATA.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
requires = ["tomli"]
12
version = "1.4.45"
23
extra_description = """\
34
The `sqlalchemy-stubs` package is an alternative to this package and also \

stubs/paramiko/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version = "2.12.*"
2-
requires = ["types-cryptography"]
2+
requires = ["cryptography"]
33

44
[tool.stubtest]
55
# linux and darwin are equivalent

stubs/requests/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version = "2.28.*"
2-
requires = ["types-urllib3<1.27"] # keep in sync with requests's setup.py
2+
requires = ["types-urllib3<1.27", "numpy"] # keep in sync with requests's setup.py
33

44
[tool.stubtest]
55
ignore_missing_stub = false

0 commit comments

Comments
 (0)