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

Commit 740e233

Browse files
authored
Merge pull request #53 from qiskit-community/tox4
Modify `tox.ini` to work with tox 4
2 parents 6a771f2 + 99ea695 commit 740e233

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/test_development_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# Second, update requirements[-dev].txt in place to use the
3737
# development (git) versions of all Qiskit packages.
3838
sed -i 's|^\(qiskit[A-Za-z-]*\).*|git+https://github.com/Qiskit/\1.git|' requirements-dev.txt requirements.txt
39-
pip install tox
39+
pip install 'tox<4'
4040
- name: Modify tox.ini for more thorough check
4141
shell: bash
4242
run: |

.github/workflows/test_latest_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install dependencies
3535
run: |
3636
python -m pip install --upgrade pip
37-
pip install tox
37+
pip install 'tox<4'
3838
- name: Modify tox.ini for more thorough check
3939
shell: bash
4040
run: |

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
minversion = 2.4
33
envlist = py36, py37, py38, py39, py310, lint, coverage, docs
44
# CI: skip-next-line
5-
skipsdist = true
6-
# CI: skip-next-line
75
skip_missing_interpreters = true
86

97
[testenv]
10-
# CI: skip-next-line
11-
usedevelop = true
128
install_command = pip install -U {opts} {packages}
139
setenv =
1410
VIRTUAL_ENV={envdir}

0 commit comments

Comments
 (0)