Skip to content

Commit 27ab0c8

Browse files
authored
chore: Remove numpy pin, pin datashader, drop Python 3.7 (#789)
* chore: Remove numpy pin and pin datashader Datashader 0.15.0 removes error numpy.warnings removal: holoviz/datashader#1176 * chore: Require Python >= 3.8
1 parent 7d5bb49 commit 27ab0c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
16-
python: [3.7, 3.8, 3.9, '3.10', 3.11]
16+
python: [3.8, 3.9, '3.10', 3.11]
1717
env:
1818
OS: ${{ matrix.os }}
1919
PYTHON: ${{ matrix.python }}

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ url = https://github.com/makepath/xarray-spatial
1919
[options]
2020
include_package_data = True
2121
install_requires =
22-
datashader
22+
datashader >= 0.15.0
2323
numba
2424
xarray
25-
numpy <= 1.23.4
25+
numpy
2626
packages = find:
27-
python_requires = >=3.7
27+
python_requires = >=3.8
2828
setup_requires = setuptools_scm
2929
zip_safe = False
3030

0 commit comments

Comments
 (0)