Skip to content

Commit

Permalink
More build improvements for v0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Aug 1, 2022
1 parent ba323e1 commit 71648be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Version 0.4.4

Date: 2022-07-29
Date: 2022-08-01

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

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ universal = 1

[tool:pyctdev.conda]
namespace_map =
dask=dask-core
geopandas=geopandas-base
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import param

from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

extras_require = {
'tests': [
Expand All @@ -27,7 +27,7 @@
}

install_requires = [
'dask[complete]',
'dask',
'fsspec',
'numba',
'pandas',
Expand Down Expand Up @@ -55,7 +55,7 @@
extras_require=extras_require,
tests_require=extras_require['tests'],
license='BSD-2-Clause',
packages=find_packages(exclude=('tests', 'tests.*')),
packages=find_namespace_packages(),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: BSD License",
Expand Down

0 comments on commit 71648be

Please sign in to comment.