File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -250,13 +250,19 @@ jobs:
250250 pip install -r tests/requirements.txt
251251 pytest -s tests
252252
253+ - name : Copy SSL DLLs
254+ shell : pwsh
255+ if : ${{ github.event_name == 'pull_request' }}
256+ run : |
257+ Copy-Item "C:\Miniconda\envs\3.14\Library\bin\libssl*.dll" "C:\Miniconda\envs\3.14\DLLs\"
258+ Copy-Item "C:\Miniconda\envs\3.14\Library\bin\libcrypto*.dll" "C:\Miniconda\envs\3.14\DLLs\"
259+
253260 - name : Wheel on pull request only
254261 shell : bash -l {0}
255262 if : ${{ github.event_name == 'pull_request' }}
256263 run : |
257264 cd pysam
258265 conda deactivate
259266 conda activate ${{ matrix.python-version }}
260- conda install --force-reinstall openssl python=${{ matrix.python-version }}
261267 python -m pip install --upgrade build
262268 python -m build --wheel
You can’t perform that action at this time.
0 commit comments