Skip to content

Commit f356c8a

Browse files
committed
Unpin test requirements and use the same requirements for all python versions
1 parent e41dcab commit f356c8a

File tree

3 files changed

+33
-4
lines changed

3 files changed

+33
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ commands:
1919
python -m venv venv
2020
. venv/bin/activate
2121
pip install -e .
22-
pip install -r ./test_requirements/requirements_<<parameters.py>>_core.txt
22+
pip install -r ./test_requirements/requirements_core.txt
2323
- run:
2424
name: Test core
2525
command: |
@@ -42,7 +42,7 @@ commands:
4242
python -m venv venv
4343
. venv/bin/activate
4444
pip install -e .
45-
pip install -r ./test_requirements/requirements_<<parameters.py>>_optional.txt
45+
pip install -r ./test_requirements/requirements_optional.txt
4646
cd js
4747
npm ci
4848
npm run build
@@ -99,7 +99,7 @@ commands:
9999
command: |
100100
python -m venv venv
101101
. venv/bin/activate
102-
pip install -r ./test_requirements/requirements_<<parameters.py>>_optional.txt
102+
pip install -r ./test_requirements/requirements_optional.txt
103103
- run:
104104
name: Install plotly-geo
105105
command: |
@@ -310,7 +310,7 @@ jobs:
310310
python -m venv venv
311311
. venv/bin/activate
312312
pip install -e .
313-
pip install -r ./test_requirements/requirements_311_core.txt black inflect
313+
pip install -r ./test_requirements/requirements_core.txt black inflect
314314
pip install jupyterlab
315315
- run:
316316
name: Update plotly.js to dev
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
requests
2+
pytest
3+
narwhals
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
requests
2+
pandas
3+
numpy
4+
xarray
5+
statsmodels
6+
Pillow
7+
pytest
8+
pytz
9+
ipython[all]
10+
ipykernel
11+
jupyter
12+
scipy
13+
Shapely
14+
geopandas
15+
pyshp
16+
matplotlib
17+
scikit-image
18+
psutil
19+
kaleido
20+
orjson
21+
polars[timezone]
22+
pyarrow
23+
narwhals
24+
anywidget
25+
jupyter-console
26+
plotly-geo

0 commit comments

Comments
 (0)