Skip to content

Commit a851868

Browse files
committed
build: Update publish scripts
1 parent 3091e41 commit a851868

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/publish-to-live-pypi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ jobs:
1616
id-token: write
1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Set up Python 3.10
19+
- name: Set up Python 3.13
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.10'
22+
python-version: '3.13'
2323

2424
- name: Install pypa/build
2525
run: >-
2626
python -m
2727
pip install
2828
build
29+
setuptools
2930
--user
3031
- name: Build a binary wheel and a source tarball
3132
run: >-

.github/workflows/publish-to-test-pypi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ jobs:
1616
id-token: write
1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Set up Python 3.10
19+
- name: Set up Python 3.13
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.10'
22+
python-version: '3.13'
2323

2424
- name: Install pypa/build
2525
run: >-
2626
python -m
2727
pip install
2828
build
29+
setuptools
2930
--user
3031
- name: Build a binary wheel and a source tarball
3132
run: >-

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
python -m pip install --upgrade pip
4747
pip install -r tests/requirements/${{ matrix.requirements-file }}
48-
python setup.py install
48+
pip install -e .
4949
5050
- name: Run coverage
5151
run: coverage run ./test_settings.py

0 commit comments

Comments
 (0)