Skip to content

Commit b49f54f

Browse files
committed
Fix sphinx-build requirements
Tmp
1 parent 8743b85 commit b49f54f

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

docs/requirements.txt

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
# Requirements for building documentation
2+
# No versions required because they are all loaded from scratch
23
# Ipykernel and ipython are for nbsphinx and ipython directives
34
# Automodapi is a fork that changes several features
45
# See: https://github.com/lukelbd/sphinx-automodapi/tree/proplot-mods
5-
# Note that pip install hangs onto older commits unless __version__ is changed
6-
# since otherwise setup.py will not think it is necessary to rebuild
7-
lxml>=4.0.0
8-
pyyaml>=5.0.0
9-
sphinx>=2.2.0
10-
numpy>=1.14
11-
ipython>=7.0.0
12-
ipykernel>=5.0.0
13-
sphinx>=2.2.0
14-
nbsphinx>=0.4.0
15-
matplotlib>=3.0
16-
sphinx_rtd_theme>=0.4.0
6+
numpy
7+
xarray
8+
pandas
9+
matplotlib
10+
pyproj
11+
cartopy
12+
basemap
13+
lxml
14+
pyyaml
15+
sphinx
16+
nbsphinx
17+
ipython
18+
ipykernel
19+
sphinx_rtd_theme
1720
git+https://github.com/lukelbd/sphinx-automodapi@v0.6.proplot-mods

proplot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _warning_proplot(message, category, filename, lineno, line=None):
7474

7575
# SCM versioning
7676
import pkg_resources as _pkg
77-
name = 'ProPlot'
77+
name = 'proplot'
7878
try:
7979
version = __version__ = _pkg.get_distribution(__name__).version
8080
except _pkg.DistributionNotFound:

0 commit comments

Comments
 (0)