Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #53 from qiskit-community/tox4
Browse files Browse the repository at this point in the history
Modify `tox.ini` to work with tox 4
  • Loading branch information
garrison committed Dec 8, 2022
2 parents 6a771f2 + 99ea695 commit 740e233
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_development_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Second, update requirements[-dev].txt in place to use the
# development (git) versions of all Qiskit packages.
sed -i 's|^\(qiskit[A-Za-z-]*\).*|git+https://github.com/Qiskit/\1.git|' requirements-dev.txt requirements.txt
pip install tox
pip install 'tox<4'
- name: Modify tox.ini for more thorough check
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_latest_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
pip install 'tox<4'
- name: Modify tox.ini for more thorough check
shell: bash
run: |
Expand Down
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
minversion = 2.4
envlist = py36, py37, py38, py39, py310, lint, coverage, docs
# CI: skip-next-line
skipsdist = true
# CI: skip-next-line
skip_missing_interpreters = true

[testenv]
# CI: skip-next-line
usedevelop = true
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
Expand Down

0 comments on commit 740e233

Please sign in to comment.