Skip to content

Commit d8e47c4

Browse files
committed
Fix package archive name for PEP 625
1 parent 3b8d646 commit d8e47c4

File tree

5 files changed

+11
-34
lines changed

5 files changed

+11
-34
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
- name: Set up Python
1111
uses: actions/setup-python@v4
1212
with:
13-
python-version: 3.11
13+
python-version: 3.13
1414
- name: Install requirements
15-
run: pip install tox twine -r requirements.txt -r test-requirements.txt
15+
run: pip install -r requirements.txt -r test-requirements.txt
1616
# Open-api-generator is broken. To be updated when upgrading
1717
# - name: test
1818
# run: tox
@@ -37,9 +37,9 @@ jobs:
3737
- name: Set up Python
3838
uses: actions/setup-python@v4
3939
with:
40-
python-version: 3.11
40+
python-version: 3.13
4141
- name: Install ci requirements
42-
run: pip install -r ci-requirements.txt
42+
run: pip install -r requirements.txt
4343
- name: Release
4444
run: |
4545
git config --global user.email "infra@bimdata.io"

.gitlab-ci.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

ci-requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

requirements.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
python_dateutil >= 2.5.3
2-
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3
1+
python_dateutil >= 2.9.0
2+
setuptools >= 79.0.1
3+
urllib3 >= 2.4.0
4+
python-semantic-release==9.21.0
5+
twine>=6.1.0
6+
tox>=4.25.0

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pytest-cov>=2.8.1
1+
pytest-cov>=6.1.1

0 commit comments

Comments
 (0)