Skip to content

Commit 3ab4520

Browse files
committed
ugh
1 parent 4fb3b81 commit 3ab4520

File tree

2 files changed

+32
-52
lines changed

2 files changed

+32
-52
lines changed

.github/workflows/pull-request.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,17 @@ jobs:
2828
uses: actions/setup-python@v5
2929
with:
3030
python-version: ${{ matrix.python-version }}
31-
3231
- name: Install Dependencies
33-
if: ${{ matrix.python-version == '3.8' }}
32+
if: ${{ matrix.python-version != '3.8' }}
3433
run: |
3534
python -m pip install --upgrade pip
36-
pip install -r requirements.txt -r requirements-dev-3.8.txt
35+
pip install -r requirements.txt -r requirements-dev.txt
3736
3837
- name: Install Dependencies
39-
if: ${{ matrix.python-version != '3.8' }}
38+
if: ${{ matrix.python-version == '3.8' }}
4039
run: |
4140
python -m pip install --upgrade pip
42-
pip install -r requirements.txt -r requirements-dev.txt
41+
pip install -r requirements.txt -r requirements-dev-3.8.txt
4342
4443
- name: Check Formatting
4544
run: black --check .

requirements-dev.txt

Lines changed: 28 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile requirements-dev.in --constraints requirements.txt -o requirements-dev.txt --python-version 3.9
2+
# uv pip compile requirements-dev.in --constraints requirements.txt -o requirements-dev.txt --python-version 3.8
33
absolufy-imports==0.3.1
44
# via -r requirements-dev.in
55
annotated-types==0.7.0
@@ -8,54 +8,47 @@ annotated-types==0.7.0
88
# pydantic
99
argcomplete==3.6.2
1010
# via datamodel-code-generator
11-
black==25.1.0
11+
black==24.8.0
1212
# via
1313
# -r requirements-dev.in
1414
# datamodel-code-generator
15-
build==1.3.0
15+
build==1.2.2.post1
1616
# via pip-tools
1717
cffi==1.17.1
1818
# via pytest-codspeed
1919
click==8.1.8
2020
# via
2121
# black
2222
# pip-tools
23-
coverage==7.10.4
23+
coverage==7.6.1
2424
# via pytest-cov
25-
datamodel-code-generator==0.33.0
25+
datamodel-code-generator==0.27.3
2626
# via -r requirements-dev.in
2727
exceptiongroup==1.3.0
2828
# via pytest
29-
flake8==7.3.0
29+
filelock==3.16.1
30+
# via pytest-codspeed
31+
flake8==5.0.4
3032
# via -r requirements-dev.in
3133
genson==1.3.0
3234
# via datamodel-code-generator
33-
importlib-metadata==8.7.0
34-
# via
35-
# build
36-
# pytest-codspeed
37-
# typeguard
38-
inflect==7.5.0
35+
importlib-metadata==8.5.0
36+
# via build
37+
inflect==5.6.2
3938
# via datamodel-code-generator
4039
iniconfig==2.1.0
4140
# via pytest
42-
isort==6.0.1
41+
isort==5.13.2
4342
# via
4443
# -r requirements-dev.in
4544
# datamodel-code-generator
4645
jinja2==3.1.6
4746
# via datamodel-code-generator
48-
markdown-it-py==3.0.0
49-
# via rich
50-
markupsafe==3.0.2
47+
markupsafe==2.1.5
5148
# via jinja2
5249
mccabe==0.7.0
5350
# via flake8
54-
mdurl==0.1.2
55-
# via markdown-it-py
56-
more-itertools==10.7.0
57-
# via inflect
58-
mypy==1.17.1
51+
mypy==1.14.1
5952
# via -r requirements-dev.in
6053
mypy-extensions==1.1.0
6154
# via
@@ -68,20 +61,16 @@ packaging==25.0
6861
# datamodel-code-generator
6962
# pytest
7063
pathspec==0.12.1
71-
# via
72-
# black
73-
# mypy
74-
pip==25.2
64+
# via black
65+
pip==25.0.1
7566
# via pip-tools
7667
pip-tools==7.5.0
7768
# via -r requirements-dev.in
78-
platformdirs==4.3.8
69+
platformdirs==4.3.6
7970
# via black
80-
pluggy==1.6.0
81-
# via
82-
# pytest
83-
# pytest-cov
84-
pycodestyle==2.14.0
71+
pluggy==1.5.0
72+
# via pytest
73+
pycodestyle==2.9.1
8574
# via flake8
8675
pycparser==2.22
8776
# via cffi
@@ -93,36 +82,30 @@ pydantic-core==2.27.2
9382
# via
9483
# -c requirements.txt
9584
# pydantic
96-
pyflakes==3.4.0
85+
pyflakes==2.5.0
9786
# via flake8
98-
pygments==2.19.2
99-
# via
100-
# pytest
101-
# rich
10287
pyproject-hooks==1.2.0
10388
# via
10489
# build
10590
# pip-tools
106-
pytest==8.4.1
91+
pytest==8.3.5
10792
# via
10893
# -r requirements-dev.in
10994
# pytest-codspeed
11095
# pytest-cov
11196
# pytest-lazy-fixtures
11297
# pytest-mock
113-
pytest-codspeed==4.0.0
98+
pytest-codspeed==2.2.1
11499
# via -r requirements-dev.in
115-
pytest-cov==6.2.1
100+
pytest-cov==5.0.0
116101
# via -r requirements-dev.in
117102
pytest-lazy-fixtures==1.3.4
118103
# via -r requirements-dev.in
119104
pytest-mock==3.14.1
120105
# via -r requirements-dev.in
121106
pyyaml==6.0.2
122107
# via datamodel-code-generator
123-
rich==14.1.0
124-
# via pytest-codspeed
125-
setuptools==80.9.0
108+
setuptools==75.3.2
126109
# via pip-tools
127110
tomli==2.2.1
128111
# via
@@ -133,20 +116,18 @@ tomli==2.2.1
133116
# mypy
134117
# pip-tools
135118
# pytest
136-
typeguard==4.4.2
137-
# via inflect
138-
types-setuptools==80.9.0.20250809
119+
types-setuptools==75.8.0.20250110
139120
# via -r requirements-dev.in
140121
typing-extensions==4.13.2
141122
# via
142123
# -c requirements.txt
124+
# annotated-types
143125
# black
144126
# exceptiongroup
145127
# mypy
146128
# pydantic
147129
# pydantic-core
148-
# typeguard
149130
wheel==0.45.1
150131
# via pip-tools
151-
zipp==3.23.0
132+
zipp==3.20.2
152133
# via importlib-metadata

0 commit comments

Comments
 (0)