Skip to content

Commit

Permalink
install menuinst from url on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Nov 20, 2023
1 parent 6c4ba18 commit fe26449
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,16 @@ jobs:
--file .\tests\requirements-windows.txt ^
${{ env.CONDA_CHANNEL_LABEL }}::conda
if %errorlevel% neq 0 exit 1
# TEMPORARY
if "${{ matrix.python-version }}" == "3.8" (
conda install https://anaconda.org/conda-forge/menuinst/2.0.0/download/win-64/menuinst-2.0.0-py38hd3f51b4_1.conda
if %errorlevel% neq 0 exit 1
)
if "${{ matrix.python-version }}" == "3.11" (
conda install https://anaconda.org/conda-forge/menuinst/2.0.0/download/win-64/menuinst-2.0.0-py311h12c1d0e_1.conda
if %errorlevel% neq 0 exit 1
)
# /TEMPORARY
pip install -e . --no-deps
if %errorlevel% neq 0 exit 1
Expand Down
2 changes: 2 additions & 0 deletions tests/requirements-linux.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
patch
patchelf
shellcheck
# TEMP
conda-forge::menuinst >=2
2 changes: 2 additions & 0 deletions tests/requirements-macos.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
patch
shellcheck
# TEMP
conda-forge::menuinst >=2
3 changes: 2 additions & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ beautifulsoup4
chardet
conda >=4.13
conda-forge::allure-pytest
conda-forge::menuinst >=2
# Can't install on Windows because conda so far pins against menuinst<2
# conda-forge::menuinst >=2
conda-index
conda-package-handling
conda-verify
Expand Down

0 comments on commit fe26449

Please sign in to comment.