Skip to content

Commit c1b2b2d

Browse files
committed
Use -y to force uninstall Cython in CI
1 parent 342a9d5 commit c1b2b2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RC="--rcfile=.coveragerc.meson"
1919

2020
# See https://github.com/cython/cython/issues/6658
2121
# Needed for Python 3.13 only
22-
pip uninstall cython
22+
pip uninstall -y cython
2323
pip install git+https://github.com/cython/cython.git@fdbca99
2424

2525
meson setup build -Dcoverage=true

bin/coverage_setuptools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RC="--rcfile=.coveragerc.setuptools"
88

99
# See https://github.com/cython/cython/issues/6658
1010
# Needed for Python 3.13 only
11-
pip uninstall cython
11+
pip uninstall -y cython
1212
pip install git+https://github.com/cython/cython.git@fdbca99
1313

1414
touch src/*/*/*.pyx

0 commit comments

Comments
 (0)