Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

limit libcurl version to <8.10 #297

Merged
merged 11 commits into from
Oct 28, 2024
12 changes: 3 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ jobs:
miniforge-variant: Mambaforge
activate-environment: bitinfo-tests
python-version: '3.11'
- name: Set up conda environment
run: |
mamba env update -f tests/environment.yml
environment-file: tests/environment.yml
- name: Conda info
run: conda info
- name: Conda list
Expand All @@ -67,9 +65,7 @@ jobs:
activate-environment: bitinfo-tests
auto-update-conda: false
python-version: '3.11'
- name: Install conda dependencies
run: |
mamba env update -f tests/environment.yml
environment-file: tests/environment.yml
- name: Install xbitinfo
run: |
python -m pip install -e .
Expand Down Expand Up @@ -98,9 +94,7 @@ jobs:
miniforge-variant: Mambaforge
activate-environment: bitinfo-docs
python-version: '3.11'
- name: Set up conda environment
run: |
mamba env update -f docs/environment.yml
environment-file: docs/environment.yml
- name: Remove julia (issue #212)
run: |
conda remove julia
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
X.X.X (unreleased)
------------------

* Limit libcurl version to fix recent binary issues (:pr:`297`) `Hauke Schulz`_.
* Add warning for quantized variables (:pr:`286`, :issue:`202`) `Joel Jaeschke`_.
* Update BitInformation.jl version to v0.6.3 (:pr:`292`) `Hauke Schulz`_
* Improve test/docs environment separation (:pr:`275`, :issue:`267`) `Aryan Bakliwal`_.
Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: bitinfo
channels:
- conda-forge
dependencies:
- python
- python<3.13
- julia<1.9.0
- pyjulia
- curl<8.10
- matplotlib-base
- numpy
- pooch
Expand Down
1 change: 1 addition & 0 deletions tests/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dependencies:
- python
- julia<1.9.0
- pyjulia
- curl<8.10
- matplotlib-base
- numpy
- pooch
Expand Down
Loading