Skip to content

Commit 71648be

Browse files
committed
More build improvements for v0.4.4
1 parent ba323e1 commit 71648be

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Version 0.4.4
22

3-
Date: 2022-07-29
3+
Date: 2022-08-01
44

55
This release achieves compatibility with recent versions of Dask, Pandas, PyArrow and Shapely.
66

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ universal = 1
66

77
[tool:pyctdev.conda]
88
namespace_map =
9+
dask=dask-core
910
geopandas=geopandas-base

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import param
22

3-
from setuptools import find_packages, setup
3+
from setuptools import find_namespace_packages, setup
44

55
extras_require = {
66
'tests': [
@@ -27,7 +27,7 @@
2727
}
2828

2929
install_requires = [
30-
'dask[complete]',
30+
'dask',
3131
'fsspec',
3232
'numba',
3333
'pandas',
@@ -55,7 +55,7 @@
5555
extras_require=extras_require,
5656
tests_require=extras_require['tests'],
5757
license='BSD-2-Clause',
58-
packages=find_packages(exclude=('tests', 'tests.*')),
58+
packages=find_namespace_packages(),
5959
include_package_data=True,
6060
classifiers=[
6161
"License :: OSI Approved :: BSD License",

0 commit comments

Comments
 (0)