Skip to content

Commit

Permalink
Pin urllib3 and conda-build (#4979)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed May 31, 2023
1 parent 3addbe5 commit cf97774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:
conda install "pip<21.2.1"
conda install -c pyviz "pyctdev>=0.5"
doit ecosystem_setup
# See: https://github.com/holoviz/panel/pull/4979
conda install -c conda-forge "urllib3<2.0.0" "conda-build==3.24"
- name: build pyodide wheels for CDN
run: |
python ./scripts/build_pyodide_wheels.py
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ def run(self):
'pyviz_comms >=0.7.4',
'bleach',
'tqdm >=4.48.0',
'cryptography <39' # Avoid pyOpenSSL issue
'cryptography <39', # Avoid pyOpenSSL issue
'urllib3 <2.0', # See: https://github.com/holoviz/panel/pull/4979
]

setup_args = dict(
Expand Down

0 comments on commit cf97774

Please sign in to comment.