File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646
4747 - name : Install dependencies
4848 run : |
49- python3 -m pip install --upgrade pip
50- python3 -m pip install --upgrade tox coveralls
49+ python3 -m pip install --constraint requirements-build.txt tox coveralls
5150
5251 - name : Run tox (${{ env.TOXENV }})
5352 # See TOXENV environment variable for the testenv to be executed here
9089
9190 - name : Install dependencies
9291 run : |
93- python3 -m pip install --upgrade pip
94- python3 -m pip install --upgrade coveralls
92+ python3 -m pip install coveralls
9593
9694 - name : Finalize publishing on coveralls.io
9795 continue-on-error : true
Original file line number Diff line number Diff line change 2828 python-version : ' 3.x'
2929
3030 - name : Install build dependency
31- run : python3 -m pip install --upgrade pip build
31+ run : python3 -m pip install --constraint requirements-build.txt build
3232
3333 - name : Build binary wheel and source tarball
3434 run : python3 -m build --sdist --wheel --outdir dist/ .
Original file line number Diff line number Diff line change 2020 python-version : " 3.x"
2121 - id : get-version
2222 run : |
23- python3 -m pip install --upgrade pip
2423 python3 -m pip install -e .
2524 script="from tuf.api.metadata import SPECIFICATION_VERSION; \
2625 print(f\"v{'.'.join(SPECIFICATION_VERSION)}\")"
Original file line number Diff line number Diff line change 1+ # The build and tox versions specified here are also used as constraints
2+ # during CI and CD Github workflows
3+ build==0.9.0
4+ tox==3.27.1
Original file line number Diff line number Diff line change 11# Install tuf in editable mode and requirements for local testing with tox,
2- # and also for running test suite or individual tests manually
3- build
4- tox
5- twine
6- wheel
2+ # and also for running test suite or individual tests manually.
3+ # The build and tox versions specified here are also used as constraints
4+ # during CI and CD Github workflows
5+ -r requirements-build.txt
76-r requirements-test.txt
87-e .
You can’t perform that action at this time.
0 commit comments