Skip to content

Commit f21dd29

Browse files
committed
Remove ipython install from github
1 parent 0c7e88e commit f21dd29

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest, windows-latest, macos-latest]
25-
python-version: ["3.11", "3.12", "3.13"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v4
@@ -40,21 +40,18 @@ jobs:
4040
timeout-minutes: 15
4141
if: ${{ !startsWith( matrix.python-version, 'pypy' ) && !startsWith(matrix.os, 'windows') }}
4242
run: |
43-
hatch run cov:python -m pip install https://github.com/ipython/ipython/archive/main.zip --ignore-installed
4443
hatch run cov:test --cov-fail-under 50
4544
4645
- name: Run the tests on pypy
4746
timeout-minutes: 15
4847
if: ${{ startsWith( matrix.python-version, 'pypy' ) }}
4948
run: |
50-
hatch run test:python -m pip install https://github.com/ipython/ipython/archive/main.zip --ignore-installed
5149
hatch run test:nowarn
5250
5351
- name: Run the tests on Windows
5452
timeout-minutes: 15
5553
if: ${{ startsWith(matrix.os, 'windows') }}
5654
run: |
57-
hatch run cov:python -m pip install https://github.com/ipython/ipython/archive/main.zip --ignore-installed
5855
hatch run cov:nowarn
5956
6057
- name: Check Launcher

0 commit comments

Comments
 (0)