Skip to content

Commit 560c771

Browse files
committed
dependecies fixed
1 parent 087bb80 commit 560c771

File tree

3 files changed

+24
-26
lines changed

3 files changed

+24
-26
lines changed

.github/workflows/linting.yml

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,28 @@ name: Linting
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: ["main"]
88

99
permissions:
1010
contents: read
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
steps:
18-
- uses: actions/checkout@v4
19-
- name: Set up Python 3.12
20-
uses: actions/setup-python@v3
21-
with:
22-
python-version: "3.12"
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
17+
- uses: actions/checkout@v4
18+
- name: Set up Python 3.12
19+
uses: actions/setup-python@v3
20+
with:
21+
python-version: "3.12"
22+
- name: Install dependencies
23+
run: |
24+
python -m pip install --upgrade pip
25+
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
2726
28-
- name: Lint with Ruff
29-
run: |
30-
ruff check
31-
32-
- name: Lint with black
33-
run: |
34-
black --check .
27+
- name: Lint with black
28+
run: |
29+
black --check .

requirements-dev.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
annotated-types==0.7.0
2+
anyio==4.12.0
23
black==25.1.0
34
certifi==2025.6.15
45
charset-normalizer==3.4.2
56
click==8.2.1
67
coverage==7.9.2
78
dnspython==2.7.0
89
email_validator==2.2.0
10+
h11==0.16.0
11+
h2==4.3.0
12+
hpack==4.1.0
13+
httpcore==1.0.9
14+
httpx==0.28.1
15+
hyperframe==6.1.0
916
idna==3.10
1017
iniconfig==2.1.0
1118
mypy==1.16.1
1219
mypy_extensions==1.1.0
20+
numpy==2.4.0
1321
packaging==25.0
1422
pathspec==0.12.1
1523
platformdirs==4.3.8
@@ -22,9 +30,7 @@ pytest-asyncio==1.1.0
2230
pytest-cov==6.2.1
2331
python-dotenv==1.1.1
2432
PyYAML==6.0.2
25-
requests==2.32.4
26-
responses==0.25.7
27-
ruff==0.12.2
33+
respx==0.22.0
2834
types-requests==2.32.4.20250611
2935
typing-inspection==0.4.1
3036
typing_extensions==4.14.1

requirements.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
annotated-types==0.7.0
2-
black==25.1.0
32
certifi==2025.6.15
43
charset-normalizer==3.4.2
54
click==8.2.1
@@ -14,9 +13,7 @@ platformdirs==4.3.8
1413
pydantic==2.11.7
1514
pydantic_core==2.33.2
1615
python-dotenv==1.1.1
17-
requests==2.32.4
18-
ruff==0.12.2
19-
types-requests==2.32.4.20250611
2016
typing-inspection==0.4.1
2117
typing_extensions==4.14.1
2218
urllib3==2.5.0
19+
httpx==0.28.1

0 commit comments

Comments
 (0)