Skip to content

Commit 0e47497

Browse files
authored
Merge pull request #234 from raphaelquast/dev
Quick bugfix release to include missing companion-widget source-files on install.
2 parents 1410b52 + 7eef546 commit 0e47497

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EOmaps is available on [conda-forge](https://anaconda.org/conda-forge/eomaps) an
2121
conda install -c conda-forge eomaps
2222
```
2323

24-
This will install all required and optional dependencies.
24+
This will install all required dependencies as well as the optional dependencies ``pandas``, ``geopandas``, ``mapclassify``, ``datashader``, ``owslib``, ``requests`` and ``qtpy``
2525

2626

2727
:::{dropdown} Greatly speed up the installation!

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ requires = ["setuptools>=61.0"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools.packages.find]
6-
include = ["eomaps", "eomaps.scripts", "eomaps.qtcompanion"]
6+
include = ["eomaps", "eomaps.scripts", "eomaps.qtcompanion", "eomaps.qtcompanion.widgets"]
77

88
[tool.setuptools.package-data]
99
eomaps = ["logo.png", "NE_features.json", "qtcompanion/icons/*"]
1010

1111

1212
[project]
1313
name = "eomaps"
14-
version = "8.0.1"
14+
version = "8.0.2"
1515
description = "A library to create interactive maps of geographical datasets."
1616
readme = "README.md"
1717
license = {file = "LICENSE"}
@@ -66,7 +66,10 @@ wms = [
6666
"requests",
6767
]
6868

69-
shade = ["datashader"]
69+
shade = [
70+
"datashader",
71+
"dask[dataframe]", # to address https://github.com/dask/dask/issues/10995
72+
]
7073

7174
gui = [
7275
"PyQt5",

0 commit comments

Comments
 (0)