Skip to content

Add a build with no numpy to circleci #4696

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

Merged
merged 5 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,21 @@ jobs:
- test_optional:
py: "39_pandas_2"

# No numpy
python_312_no_numpy:
docker:
- image: cimg/python:3.12-browsers
steps:
- run:
name: Check that numpy is not installed
command: |
if pip list | grep numpy > /dev/null 2>&1
then exit 1
else exit 0
fi
- test_optional:
py: "312_no_numpy"

# Orca
python_38_orca:
docker:
Expand Down Expand Up @@ -598,5 +613,6 @@ workflows:
- python_39_pandas_2_optional
- python_38_orca
- python_39_percy
- python_312_no_numpy
- build-doc

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
requests==2.31.0
tenacity==8.2.3
pandas
xarray==2023.12.0
statsmodels
Pillow==10.2.0
pytest==7.4.4
pytz==2023.3.post1
ipython[all]==7.22.0
ipywidgets<8
ipykernel==5.5.3
jupyter==1.0.0
scipy==1.11.4
Shapely==2.0.2
geopandas==0.14.2
pyshp==2.3.1
matplotlib==3.8.2
scikit-image==0.22.0
psutil==5.9.7
kaleido
orjson==3.9.10