Skip to content

Commit

Permalink
tox: Don't use pre-release tools
Browse files Browse the repository at this point in the history
Keep using newest versions of build tools, but don't use pre-releases:
* less downloading (with chances of failures) happens in the CI because
  versions change less often
* tools are less likely to break the build (or at least it happens less
  often)

This change should not affect the software under test as we install
pinned versions of those.

Note that this also doesn't affect black: tox still ends up with a
pre-release version of black because that project has never made an
actual release.

Fixes theupdateframework#1350

Signed-off-by: Jussi Kukkonen <[email protected]>
  • Loading branch information
Jussi Kukkonen committed Apr 27, 2021
1 parent 878c8c6 commit aaca8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ deps =
# installation (see `skipsdist`), to get relative paths in coverage reports
--editable {toxinidir}

install_command = pip install --pre {opts} {packages}
install_command = pip install {opts} {packages}

# Develop test env to run tests against securesystemslib's master branch
# Must to be invoked explicitly with, e.g. `tox -e with-sslib-master`
Expand Down

0 comments on commit aaca8ec

Please sign in to comment.