-
Notifications
You must be signed in to change notification settings - Fork 395
Expand file tree
/
Copy pathenvironment.yml
More file actions
43 lines (42 loc) · 911 Bytes
/
environment.yml
File metadata and controls
43 lines (42 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# To set up a development environment using conda, run:
#
# conda env create -f environment.yml
# conda activate cartopy-dev
# pip install -e .
#
name: cartopy-dev
channels:
- conda-forge
dependencies:
- cython>=3.0
- numpy>=1.26
- shapely>=2.0
- pyshp>=2.3.1
- pyproj>=3.6.0
# PROJ 9.8 changes the way equicylindrical projections (PlateCarree)
# are transformed, which causes some issues. Temporary pin PROJ < 9.8
# to avoid these for now.
- proj<9.8
# The testing label has the proper version of freetype included
- conda-forge/label/testing::matplotlib-base>=3.6
# OWS
- owslib>=0.29
- pillow>=9.1
# Plotting
- scipy>=1.11
# Testing
- pytest
- pytest-mpl
- pytest-xdist
- packaging>=21
# Documentation
- pydata-sphinx-theme
- sphinx
- sphinx-copybutton
- sphinx-gallery
# Extras
- fiona
- pre-commit
- pykdtree
- ruff
- setuptools_scm