Skip to content

Commit

Permalink
[plotting] Improve dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Aug 14, 2023
1 parent 37a9995 commit 91d1d7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ virtualenv-docs: setup-virtualenv
# Install requirements for development.
virtualenv-dev: setup-virtualenv
@$(pip) install --upgrade --prefer-binary --requirement=requirements-test.txt
@$(pip) install --upgrade --prefer-binary --editable=.[daq,daq_geospatial,export,scientific,firmware]
@$(pip) install --upgrade --prefer-binary --editable=.[daq,daq_geospatial,export,plotting,scientific,firmware]

# Install requirements for releasing.
install-releasetools: setup-virtualenv
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,9 @@

'plotting': [
#'dyplot==0.8.8',

'matplotlib>=3,<3.4',
'matplotlib>=3.5,<3.8',
'plotnine<0.13',
#'cairocffi>=0.5.4',
'bokeh>=1.4.0,<3.1',
'vincent>=0.4.4,<0.5',
],

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

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

# Visualization
# -------------
'bokeh>=1.4.0,<3.1',
#'seaborn==0.7.1',
'vincent>=0.4.4,<0.5',

],

Expand Down

0 comments on commit 91d1d7d

Please sign in to comment.