Skip to content
Open
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
1 change: 1 addition & 0 deletions ci/extra_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
matplotlib==3.10.0
cartopy==0.24.0
dask==2025.2.0
shapely==2.0.7
1 change: 0 additions & 1 deletion ci/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
matplotlib==3.10.1
numpy==2.2.3
pandas==2.2.3
pooch==1.8.2
Expand Down
7 changes: 6 additions & 1 deletion docs/userguide/installguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ years. For Python itself, that generally means supporting the last two minor rel
currently supports Python >= 3.10.

.. literalinclude:: ../../pyproject.toml
:start-at: matplotlib
:start-at: numpy
:end-at: xarray

------------
Expand All @@ -37,6 +37,11 @@ the base of the source directory, run:

This will build and install MetPy into your current Python installation.

To include the plotting features run:

.. parsed-literal::
pip install .[plot]

------------------
Working With Conda
------------------
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ classifiers = [
]
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.5.0",
"numpy>=1.23.0",
"pandas>=1.4.0",
"pint>=0.17",
Expand Down Expand Up @@ -63,7 +62,11 @@ test = [
extras = [
"cartopy>=0.21.0",
"dask>=2020.12.0",
"shapely>=1.6.4"
"shapely>=1.6.4",
"metpy[plot]"
]
plot = [
"matplotlib>=3.5.0"
]

[project.urls]
Expand Down
Loading