Skip to content

Commit

Permalink
limit libcurl version to <8.10 (#297)
Browse files Browse the repository at this point in the history
* fix ignored python version setting
* limit libcurl version to <3.10

this restriction may be lifted after JuliaLang/Downloads.jl#260
is solved
  • Loading branch information
observingClouds authored Oct 28, 2024
1 parent e3cffa5 commit fea2fcc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
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

0 comments on commit fea2fcc

Please sign in to comment.