Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/cargo/idna-1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-runkle authored Jul 2, 2024
2 parents 0d0d8f3 + 510daf8 commit 687b9b9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ jobs:
version: '3.1.46'
actions-cache-folder: emsdk-cache

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

- name: build wheels
run: make build-wasm
Expand Down Expand Up @@ -475,7 +475,7 @@ jobs:
python-version: '3.11'
architecture: ${{ matrix.python-architecture || 'x64' }}

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

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

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

# generate self-schema now, so we don't have to do so inside docker in maturin build
- run: python generate_self_schema.py
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements-linting.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
griffe==0.45.2
pyright==1.1.365
ruff==0.4.7
ruff==0.5.0
mypy==1.10.0
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pytest==8.2.1
pytest-codspeed~=2.2.1; implementation_name == "cpython" and platform_machine == 'x86_64'
# pytest-examples currently depends on aiohttp via black; we don't want to build
# it on platforms like aarch64 musllinux in CI
pytest-examples==0.0.10; implementation_name == "cpython" and platform_machine == 'x86_64'
pytest-examples==0.0.11; implementation_name == "cpython" and platform_machine == 'x86_64'
pytest-speed==0.3.5
pytest-mock==3.14.0
pytest-pretty==1.2.0
Expand Down
2 changes: 1 addition & 1 deletion tests/validators/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_list_strict():

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


def gen_ints():
Expand Down

0 comments on commit 687b9b9

Please sign in to comment.