Skip to content

Commit 99eae42

Browse files
Merge branch 'main' into next-release-prep
2 parents d20494d + b7fa254 commit 99eae42

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ jobs:
343343
version: '3.1.46'
344344
actions-cache-folder: emsdk-cache
345345

346-
- run: pip install 'maturin>=1,<2' 'ruff==0.1.3' typing_extensions
346+
- run: pip install 'maturin>=1,<2' 'ruff==0.5.0' typing_extensions
347347

348348
- name: build wheels
349349
run: make build-wasm
@@ -475,7 +475,7 @@ jobs:
475475
python-version: '3.11'
476476
architecture: ${{ matrix.python-architecture || 'x64' }}
477477

478-
- run: pip install -U twine 'ruff==0.1.3' typing_extensions
478+
- run: pip install -U twine 'ruff==0.5.0' typing_extensions
479479

480480
# generate self-schema now, so we don't have to do so inside docker in maturin build
481481
- run: python generate_self_schema.py
@@ -539,7 +539,7 @@ jobs:
539539
with:
540540
components: llvm-tools
541541

542-
- run: pip install -U 'ruff==0.1.3' typing_extensions
542+
- run: pip install -U 'ruff==0.5.0' typing_extensions
543543

544544
# generate self-schema now, so we don't have to do so inside docker in maturin build
545545
- run: python generate_self_schema.py

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ url = "2.5.0"
4343
# idna is already required by url, added here to be explicit
4444
idna = "0.5.0"
4545
base64 = "0.21.7"
46-
num-bigint = "0.4.4"
46+
num-bigint = "0.4.6"
4747
python3-dll-a = "0.2.10"
48-
uuid = "1.8.0"
48+
uuid = "1.9.1"
4949
jiter = { version = "0.5", features = ["python"] }
5050

5151
[lib]

tests/requirements-linting.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
griffe==0.45.2
2-
pyright==1.1.365
3-
ruff==0.4.7
4-
mypy==1.10.0
1+
griffe==0.47.0
2+
pyright==1.1.369
3+
ruff==0.5.0
4+
mypy==1.10.1

tests/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
backports.zoneinfo==0.2.1;python_version<"3.9"
2-
coverage==7.5.3
2+
coverage==7.5.4
33
dirty-equals==0.7.1.post0
4-
hypothesis==6.103.0
4+
hypothesis==6.104.2
55
# pandas doesn't offer prebuilt wheels for all versions and platforms we test in CI e.g. aarch64 musllinux
66
pandas==2.1.3; python_version >= "3.9" and python_version < "3.13" and implementation_name == "cpython" and platform_machine == 'x86_64'
7-
pytest==8.2.1
7+
pytest==8.2.2
88
# we run codspeed benchmarks on x86_64 CPython (i.e. native github actions architecture)
99
pytest-codspeed~=2.2.1; implementation_name == "cpython" and platform_machine == 'x86_64'
1010
# pytest-examples currently depends on aiohttp via black; we don't want to build
1111
# it on platforms like aarch64 musllinux in CI
12-
pytest-examples==0.0.10; implementation_name == "cpython" and platform_machine == 'x86_64'
12+
pytest-examples==0.0.12; implementation_name == "cpython" and platform_machine == 'x86_64'
1313
pytest-speed==0.3.5
1414
pytest-mock==3.14.0
1515
pytest-pretty==1.2.0

tests/validators/test_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_list_strict():
4343

4444
def test_list_no_copy():
4545
v = SchemaValidator({'type': 'list'})
46-
assert v.validate_python([1, 2, 3]) is not [1, 2, 3]
46+
assert v.validate_python([1, 2, 3]) is not [1, 2, 3] # noqa: F632
4747

4848

4949
def gen_ints():

0 commit comments

Comments
 (0)