Skip to content

Commit 2b3f495

Browse files
committed
Fix mpl-base pip compat
1 parent ec4462e commit 2b3f495

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Another option is to use ``pip`` to download and install the latest release from
115115
`Python Package Index <https://pypi.python.org>`_.
116116
To install using ``pip`` into your ``diffpy.pdfmorph_env`` environment, we will also have to install dependencies ::
117117

118-
pip install -r https://raw.githubusercontent.com/diffpy/diffpy.pdfmorph/main/requirements/run.txt
118+
pip install -r https://raw.githubusercontent.com/diffpy/diffpy.pdfmorph/main/requirements/pip.txt
119119

120120
and then install the package ::
121121

TODO.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ exclude = ["tests"] # exclude packages matching these glob patterns (empty by d
5252
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
5353

5454
[tool.setuptools.dynamic]
55-
dependencies = {file = ["requirements/run.txt"]}
55+
dependencies = {file = ["requirements/pip.txt"]}
5656

5757
[tool.black]
5858
line-length = 115

requirements/pip.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
numpy
2+
scipy
3+
diffpy.utils
4+
matplotlib
5+
bg-mpl-stylesheets

requirements/run.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
numpy
22
scipy
33
diffpy.utils
4-
matplotlib
4+
matplotlib-base
55
bg-mpl-stylesheets

0 commit comments

Comments
 (0)