Skip to content

Commit e7643e1

Browse files
authoredSep 4, 2024··
Update for NumPy 2.0 and Python 3.13 (#328)
1 parent b962f13 commit e7643e1

File tree

7 files changed

+9
-12
lines changed

7 files changed

+9
-12
lines changed
 

‎.github/workflows/tests.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/setup-python@v1
1616
with:
17-
python-version: "3.8"
17+
python-version: "3.10"
1818

1919
- uses: actions/cache@v2
2020
with:
@@ -33,9 +33,8 @@ jobs:
3333
- name: Install dependencies & configure cesium
3434
run: |
3535
pip install --upgrade pip
36-
pip install wheel numpy requests six python-dateutil pytest pytest-cov mock coverage
36+
pip install wheel setuptools_scm numpy cython requests six python-dateutil pytest pytest-cov mock coverage
3737
make install
38-
pip install cython==0.29.23
3938
python setup.py build_ext -i
4039
pip install -e .
4140

‎.github/workflows/wheel_tests_and_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
os: [ubuntu-latest]
27-
cibw_python: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
27+
cibw_python: ["cp310-*", "cp311-*", "cp312-*"]
2828
cibw_manylinux: [manylinux2014]
2929
cibw_arch: ["x86_64"]
3030
steps:

‎cesium/featurize.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -452,8 +452,8 @@ def save_featureset(fset, path, **kwargs):
452452
kwargs[k] = []
453453

454454
# Bypass savez to allow for `allow_pickle` keyword
455-
# See https://github.com/numpy/numpy/pull/5770
456-
np.lib.npyio._savez(path, [], kwargs, compress=True, allow_pickle=False)
455+
# See also https://github.com/numpy/numpy/pull/27335
456+
np.lib._npyio_impl._savez(path, [], kwargs, compress=True, allow_pickle=False)
457457

458458

459459
def load_featureset(path):

‎cesium/time_series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _make_array_if_possible(x):
7676
of arrays to (p, n) arrays.
7777
"""
7878
try:
79-
x = np.asfarray(x).squeeze()
79+
x = np.asarray(x, dtype=float).squeeze()
8080
except ValueError:
8181
pass
8282
return x

‎cesium/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def extract_time_series(
8888
x for x in archive.getmembers() if not x.name.startswith((".", "/"))
8989
]
9090
extracted_names = [x.name for x in members_to_extract]
91-
archive.extractall(path=extract_dir, members=members_to_extract)
91+
archive.extractall(path=extract_dir, members=members_to_extract, filter="data")
9292
all_paths = [os.path.join(extract_dir, f) for f in extracted_names]
9393
elif zipfile.is_zipfile(data_path):
9494
archive = zipfile.ZipFile(data_path)

‎pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "setuptools_scm", "numpy", "Cython>=0.25"]
2+
requires = ["setuptools", "setuptools_scm", "numpy>=2.0,<3.0", "Cython>=3.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -26,7 +26,6 @@ classifiers = [
2626
"Operating System :: Unix",
2727
"Operating System :: MacOS",
2828
]
29-
3029
dynamic = ["version", "dependencies"]
3130

3231
[project.urls]

‎requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy>=1.14.3
1+
numpy>=2.0,<3.0
22
scipy>=0.16.0
33
scikit-learn>=0.22.1
44
pandas>=0.17.0
@@ -7,4 +7,3 @@ toolz
77
gatspy>=0.3.0
88
cloudpickle
99
joblib>=0.14.1
10-
setuptools-scm>=7.1.0

0 commit comments

Comments
 (0)
Please sign in to comment.