-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
requirements-travis: fix dependencies
The systems can't be set up anymore for python versions since 3.8. Update depdendencies. There will be a later pylint version producing new errors. Ignore these as we didn't check them before. Update pip to latest to avoid other dependency issues. Allow for pylint to exit with code 32 if there are no files to check. Otherwise the build will fail. For that, the exit-on-error must be temporarily switched off (set +e) in the run commands. Signed-off-by: Sebastian Mitterle <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
coverage==5.1 | ||
nose==1.3.0 | ||
nosexcover==1.0.8 | ||
tox==1.5.0 | ||
virtualenv==1.9.1 | ||
tox==1.5.0; python_version < '3.8' | ||
tox==4.16.0; python_version > '3.7' | ||
virtualenv==1.9.1; python_version < '3.8' | ||
virtualenv==20.26.3; python_version > '3.7' | ||
simplejson==3.8.1 | ||
inspektor==0.5.2 | ||
pylint==2.11.1 | ||
inspektor==0.5.2; python_version < '3.8' | ||
inspektor==0.5.3; python_version > '3.7' | ||
pylint==2.11.1; python_version < '3.8' | ||
pylint==3.2.6; python_version > '3.7' | ||
pyenchant | ||
importlib-metadata==4.13.0; python_version == '3.7' |