Noam
cc7c950381
Openpyxl fixes for worksheet and image. ( #12363 )
2024-07-18 16:41:45 +02:00
Noam
6b919d76e2
Add dimensions for openpyxl Image. ( #12362 )
2024-07-18 12:28:39 +02:00
Alex Waygood
6d68b57d74
Pin croniter to 2.0.5 ( #12356 )
2024-07-17 01:47:08 +01:00
sobolevn
274b10da70
Bump cachetools to 5.4.* ( #12353 )
2024-07-16 14:07:42 +01:00
Alex Waygood
16341c749a
Fix stubtest for shapely ( #12339 )
...
Fixes #12338
2024-07-13 17:56:29 -07:00
sobolevn
4740d320c5
Bump pygit2 to 1.15.* ( #12319 )
2024-07-13 17:38:05 +02:00
BJ Hargrave
f6eb38bddd
Update assertpy/string.pyi to correct type of pattern arg ( #12235 )
...
The methods requires the pattern arg to be of type str, not Pattern.
Signed-off-by: BJ Hargrave <bj@hargrave.dev >
2024-07-11 17:16:10 -07:00
Andria Brown
ee24958e1e
requests: Add connection property (type HTTPAdapter) to the Response class ( #12279 )
...
The `Response` instance is built by `HTTPAdapter`. When built, a property called `connection` is added to the `Response` that points back to the `HTTPAdapter` that created it. For example, this is used in the `requests` library's `HTTPDigestAuth` class to remake requests with credentials after authorization is requested by a server.
2024-07-11 17:09:07 -07:00
github-actions[bot]
96c8ade843
[stubsabot] Bump peewee to 3.17.6 ( #12290 )
...
Release: https://pypi.org/pypi/peewee/3.17.6
Homepage: https://github.com/coleifer/peewee/
Repository: https://github.com/coleifer/peewee
Typeshed stubs: https://github.com/python/typeshed/tree/main/stubs/peewee
Diff: https://github.com/coleifer/peewee/compare/3.17.5...3.17.6
Stubsabot analysis of the diff between the two releases:
- 0 public Python files have been added.
- 0 files included in typeshed's stubs have been deleted.
- 1 file included in typeshed's stubs has been modified or renamed: `peewee.py`.
- Total lines of Python code added: 234.
- Total lines of Python code deleted: 61.
2024-07-11 17:08:29 -07:00
Sebastian Rittau
eb0422195e
[jsonschema] Update to 4.23.* ( #12301 )
2024-07-11 17:02:11 -07:00
M Bussonnier
b17ed95818
Docutils: wrong type: SystemMessage vs system_message ( #12314 )
2024-07-10 17:50:52 +02:00
sobolevn
57c524d822
[flake8] Improve Statistic typing ( #12313 )
2024-07-10 11:03:43 +01:00
Oguzhan Mete Ozturk
6db5f35f4d
[docker] Update ports type annotation ( #12284 )
2024-07-10 11:57:27 +02:00
sobolevn
e8cc1e46fe
Add _write method to flake8.formatting.BaseFormatter ( #12312 )
...
It is very useful for real-life custom formatters. Example: 470d811746/wemake_python_styleguide/formatter.py (L92-L96)
Definition: 65a38c42a7/src/flake8/formatting/base.py (L173-L178)
2024-07-10 12:41:40 +03:00
github-actions[bot]
9f24a1f523
[stubsabot] Bump setuptools to 70.3.* ( #12308 )
...
Release: https://pypi.org/pypi/setuptools/70.3.0
Repository: https://github.com/pypa/setuptools
Typeshed stubs: https://github.com/python/typeshed/tree/main/stubs/setuptools
Changelog: https://setuptools.pypa.io/en/stable/history.html
Diff: https://github.com/pypa/setuptools/compare/v70.2.0...v70.3.0
Stubsabot analysis of the diff between the two releases:
- 0 public Python files have been added.
- 0 files included in typeshed's stubs have been deleted.
- 1 file included in typeshed's stubs has been modified or renamed: `setuptools/_distutils/sysconfig.py`.
- Total lines of Python code added: 35.
- Total lines of Python code deleted: 2.
If stubtest fails for this PR:
- Leave this PR open (as a reminder, and to prevent stubsabot from opening another PR)
- Fix stubtest failures in another PR, then close this PR
Note that you will need to close and re-open the PR in order to trigger CI
Co-authored-by: stubsabot <>
2024-07-10 02:26:59 +01:00
danieleades
694c982b4f
improve type annotations in 'docutils.parsers.rst.states' ( #11545 )
2024-07-09 14:00:57 +02:00
github-actions[bot]
f4dfa5ada0
[stubsabot] Bump pyinstaller to 6.9.* ( #12289 )
...
Co-authored-by: stubsabot <>
2024-07-09 02:20:45 -04:00
Alex Waygood
95176bde5f
Pin pygit2 to 1.15.0 ( #12293 )
...
Fixes #12292
2024-07-08 01:46:49 +01:00
danieleades
5305de8327
remove generic 'context' from 'docutils.parsers.rst.RSTState' ( #12291 )
2024-07-07 11:49:44 +02:00
sobolevn
99c1b7102a
is_lazy_fixture in pytest-lazy-fixture is a TypeIs function (#12285 )
2024-07-06 11:51:03 +01:00
ZivRonen
2ea26f7da6
add stub library for str2bool ( #12260 )
2024-07-03 20:30:32 -07:00
Matt
e67340b98c
Add global_context keyword to gdb.parse_and_eval in GDB stub ( #12269 )
2024-07-03 11:00:29 -07:00
Adam Dangoor
ea34c97ccc
Expand docutils.parsters.rst.states ( #12226 )
2024-07-03 14:23:56 +02:00
Avasam
45d162c9ee
Bump setuptools to 70.2.* ( #12261 )
2024-07-03 12:59:08 +02:00
BJ Hargrave
1f8c439ceb
Update assertpy/extracting.pyi so that kwargs are not required ( #12229 )
...
The recent change to better type the `sort` and `filter` kwargs had the
side effect of making them required. So we fix to supply a default
argument.
Signed-off-by: BJ Hargrave <bj@hargrave.dev >
2024-07-02 12:20:50 -07:00
Adam Dangoor
02d2f5f09e
Specify stream type of Docker logs ( #12214 )
...
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com >
2024-07-02 18:47:47 +01:00
Benjamin Kirkbride
d498fe148e
add stubs for networx.has_path ( #12252 )
2024-07-02 10:14:56 +02:00
github-actions[bot]
5bf3f47496
[stubsabot] Bump python-crontab to 3.2.* ( #12253 )
2024-07-02 10:14:05 +02:00
sobolevn
ae6e261c4f
Bump reportlab to 4.2.2 ( #12227 )
2024-06-30 12:39:51 +02:00
sobolevn
9fcaf3fe31
Bump openpyxl to 3.1.5 ( #12238 )
2024-06-29 22:10:14 +02:00
Adam Dangoor
712e4146ef
Allow users of docker run, create to not give name/version ( #12234 )
2024-06-28 13:29:20 +02:00
Adam Dangoor
ea869e2959
Add kwarg types to Docker container run and create ( #12216 )
2024-06-27 10:11:47 +02:00
Adam Dangoor
2d9b0fd2a0
Add Container wait return type at Docker model layer ( #12217 )
...
Also, improve type for the API layer. Previously, the type accounted for a 404 response. However, in the 404 case, a `docker.errors.NotFound` exception is raised.
2024-06-27 09:58:43 +02:00
BJ Hargrave
82199768bf
assertpy: improve type for extracting ( #12224 )
...
Signed-off-by: BJ Hargrave <bj@hargrave.dev >
Co-authored-by: hauntsaninja <hauntsaninja@gmail.com >
2024-06-26 14:22:32 -07:00
Avasam
326b325879
Add upstream_repository for reportlab ( #12223 )
...
This was found at https://docs.reportlab.com/releases/#reportlab-build-process
2024-06-26 13:37:33 -04:00
Sebastian Rittau
fa73f9ff4a
[tensorflow] Pin keras to 3.3.* ( #12221 )
2024-06-26 11:03:32 +02:00
Sebastian Rittau
d683ddb3ed
Pin reportlab to version 4.2.0 ( #12220 )
...
Part of #12213
2024-06-26 02:00:00 -07:00
Avasam
a6bd781626
Update setuptools to v70.1.1 ( #12215 )
2024-06-26 08:17:03 +02:00
Sebastian Rittau
b13bb947c3
[aiofiles] Update to 24.1 ( #12207 )
2024-06-25 16:51:01 -07:00
Sebastian Rittau
fb4bfc8674
[influxdb] Update to 1.44 ( #12209 )
2024-06-25 16:48:30 -07:00
Adam Dangoor
60443ca258
Add more keyword argument types for Docker pull ( #12210 )
2024-06-25 15:23:03 +02:00
Andrew Murray
49b1777037
Updated olefile types ( #12097 )
2024-06-25 14:58:17 +02:00
Adam Dangoor
ff35709167
Add parameter types to docker.models.images.ImageCollection.build ( #12196 )
...
Introduce stubs-only module `docker._types`.
2024-06-25 14:18:21 +02:00
Adam Dangoor
1535e93674
Add return types to docker container run ( #12206 )
2024-06-25 14:04:48 +02:00
Avasam
c709686511
Bump peewee to 3.17.5 ( #12201 )
2024-06-25 12:31:28 +02:00
InSync
58fe83109c
Copy openpyxl's Worksheet.__getitem__() and .__iter__() to ReadOnlyWorksheet ( #12202 )
2024-06-25 12:30:10 +02:00
Avasam
bf03f9b63a
Bump pyinstaller to 6.8.* ( #12198 )
2024-06-25 12:27:35 +02:00
Avasam
1dbf21fa8b
Bump protobuf to 5.27.* ( #12197 )
2024-06-25 12:26:56 +02:00
Sebastian Rittau
eff4ca189c
[setuptools] Update to 71.1.* ( #12176 )
2024-06-24 18:38:59 -04:00
Adam Dangoor
da443145bc
Add more specific types to Docker network inspect/get equivalent methods ( #12188 )
2024-06-24 12:38:32 +02:00