Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ jobs:

- name: Install Python dependencies
run: |
# Do not install tripper
sed -i -e '/tripper/d' requirements_full.txt

# MinGW
if [[ "${{ matrix.subsystem }}" != none ]] ;
then
Expand Down Expand Up @@ -237,8 +240,6 @@ jobs:


- name: Configure CMake
env:
DLITE_IMPORTSKIP_EXITCODE: 1
run: |
if [[ "${{ matrix.subsystem }}" != none ]] ;
then
Expand Down
3 changes: 3 additions & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ wheel==0.45.1 # Must agree with python/pyproject.toml

# Note, that setuptools 75.3.0 is the highest supported version in the Windows wheel
setuptools==75.3.0 # Must agree with python/pyproject.toml

# Used by patch-activate.sh
virtualenvwrapper==6.1.1
Loading