Skip to content

Commit

Permalink
Implement pep 685 (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kane610 authored Dec 9, 2024
1 parent f6a897b commit 48fd518
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: "3.12"
- name: Install dependencies
run: |
pip install ".[requirements, requirements_test]"
pip install ".[requirements, requirements-test]"
- name: Check lint with Ruff
run: |
ruff check axis tests
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requirements = [
"packaging==24.2",
"xmltodict==0.14.2",
]
requirements_test = [
requirements-test = [
"mypy==1.13.0",
"pytest==8.3.3",
"pytest-aiohttp==1.0.5",
Expand All @@ -44,7 +44,7 @@ requirements_test = [
"types-orjson==3.6.2",
"types-xmltodict==v0.14.0.20241009",
]
requirements_dev = [
requirements-dev = [
"pre-commit==4.0.1"
]

Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ cd "$(dirname "$0")"
python3 -m venv venv
source venv/bin/activate

python3 -m pip install ".[requirements, requirements_test, requirements_dev]"
python3 -m pip install ".[requirements, requirements-test, requirements-dev]"
pre-commit install

0 comments on commit 48fd518

Please sign in to comment.