Skip to content

Commit 416500a

Browse files
committed
[plotting] Fix dependencies around matplotlib
1 parent 37a9995 commit 416500a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ virtualenv-docs: setup-virtualenv
3535
# Install requirements for development.
3636
virtualenv-dev: setup-virtualenv
3737
@$(pip) install --upgrade --prefer-binary --requirement=requirements-test.txt
38-
@$(pip) install --upgrade --prefer-binary --editable=.[daq,daq_geospatial,export,scientific,firmware]
38+
@$(pip) install --upgrade --prefer-binary --editable=.[daq,daq_geospatial,export,plotting,scientific,firmware]
3939

4040
# Install requirements for releasing.
4141
install-releasetools: setup-virtualenv

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,9 @@
102102

103103
'plotting': [
104104
#'dyplot==0.8.8',
105-
106-
'matplotlib>=3,<3.4',
105+
'matplotlib>=3.6,<3.8',
106+
'plotnine<0.13',
107107
#'cairocffi>=0.5.4',
108-
'bokeh>=1.4.0,<3.1',
109-
'vincent>=0.4.4,<0.5',
110108
],
111109

112110
# Data export: Scientific data formats like HDF5 and NetCDF and plots from ggplot
@@ -124,15 +122,16 @@
124122
# Algorithms
125123
# ----------
126124
#'scipy>=1.4.1,<1.6',
127-
'plotnine<0.13',
128125

129126
# gfortran
130127
# aptitude install libatlas-base-dev lapack-dev gfortran or
131128
# https://gcc.gnu.org/wiki/GFortranBinaries
132129

133130
# Visualization
134131
# -------------
132+
'bokeh>=1.4.0,<3.1',
135133
#'seaborn==0.7.1',
134+
'vincent>=0.4.4,<0.5',
136135

137136
],
138137

0 commit comments

Comments
 (0)