Skip to content

Commit

Permalink
fix for new Github Action 22.04 image (#83)
Browse files Browse the repository at this point in the history
- new tox 4 link requires handling
One may see the following error:
pep8: failed with pass_env values cannot contain whitespace, use comma to have multiple values in a single line, invalid values found 'http_proxy https_proxy INTERFACE_PATH'
- in image 22.04 python 3.6 and 3.7 for dropped
  • Loading branch information
mastier authored Mar 20, 2023
1 parent 4562fbb commit 1e312c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ setenv = VIRTUAL_ENV={envdir}
CHARM_LAYERS_DIR={toxinidir}/layers
CHARM_INTERFACES_DIR={toxinidir}/interfaces
JUJU_REPOSITORY={toxinidir}/build
passenv = http_proxy https_proxy INTERFACE_PATH
passenv = http_proxy,https_proxy,INTERFACE_PATH
install_command =
pip install {opts} {packages}
deps =
Expand Down

0 comments on commit 1e312c8

Please sign in to comment.