Skip to content

Commit 953b598

Browse files
committed
build: update installation step for another tests asset
1 parent 91ac438 commit 953b598

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ jobs:
2828
- run: git clone https://github.com/mbdevpl/argunparse ../argunparse
2929
- run: cd ../argunparse && pip install -r requirements_test.txt && python setup.py build && cd -
3030
- run: git clone https://github.com/python-semver/python-semver ../semver
31-
- run: cd ../semver && python setup.py build && cd -
32-
- run: pip install jupyter
31+
- run: cd ../semver && python -m build && cd -
3332
- run: python -m coverage run --branch --source . -m unittest -v
3433
# - run: LOGGING_LEVEL=critical python -m coverage run --append --branch --source . -m unittest -v test.test_version
3534
- run: python -m coverage report --show-missing

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN set -Eeuxo pipefail && \
6969
cd - && \
7070
git clone https://github.com/python-semver/python-semver semver && \
7171
cd semver && \
72-
python setup.py build && \
72+
python -m build && \
7373
cd - && \
7474
pip install jupyter
7575

requirements_ci.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
build ~= 0.10
12
codecov ~= 2.1
23
coverage ~= 6.2
34
flake518 ~= 1.2

0 commit comments

Comments
 (0)