Skip to content

Commit 7992f04

Browse files
add np 2.x support (#28)
1 parent 7f1a3ec commit 7992f04

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,25 @@ conda create -n spotiflow python=3.12
2626
conda activate spotiflow
2727
```
2828

29+
Then install PyTorch using `pip`:
2930

30-
**Note (for MacOS users):** if using MacOS, there is a known bug causing the installation of PyTorch with `conda` to sometimes break OpenMP. You can avoid installing PyTorch with `conda` and let spotiflow install it automatically via `pip` instead.
31-
32-
For Linux/Windows with a CUDA device, install PyTorch using conda/mamba (one might need to change the cuda version accordingly):
3331
```console
34-
conda install pytorch torchvision pytorch-cuda=12.1 -c pytorch -c nvidia # Might need to change the cuda version accordingly
32+
pip install torch
3533
```
3634

37-
**Note (for Windows users):** if using Windows, please install the latest [Build Tools for Visual Studio](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022) (make sure to select the C++ build tools during installation) before proceeding to install Spotiflow.
35+
**Note (for Linux/Windows users with a CUDA-capable GPU):** one might need to change the `torch` installation command depending on the CUDA version. Please refer to the [PyTorch website](https://pytorch.org/get-started/locally/) for more information.
36+
3837

3938

39+
**Note (for Windows users):** if using Windows, please install the latest [Build Tools for Visual Studio](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022) (make sure to select the C++ build tools during installation) before proceeding to install Spotiflow.
40+
4041
Finally, install `spotiflow`:
4142

4243
```console
4344
pip install spotiflow
4445
```
4546

46-
## Installation (conda)
47+
## Installation (conda, CPU only)
4748
For Linux/MacOS users, you can also install Spotiflow using conda through the `conda-forge` channel:
4849

4950
```console

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires = ["setuptools<=71.0",
33
"setuptools_scm[toml]>=6.2",
44
"wheel",
5-
"oldest_supported_numpy"]
5+
"numpy"]
66
build-backend = "setuptools.build_meta"
77

88
[tool.setuptools_scm]

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ install_requires =
2626
dask
2727
lightning
2828
networkx
29-
numpy<2.0
29+
numpy
3030
pandas
3131
Pillow
3232
pydash

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def compile_patched(obj, src, ext, cc_args, extra_postargs, pp_opts):
5656
ext.extra_link_args = _extra_link_args + link_args
5757
print(">>> try building with OpenMP support: ", compile_args, link_args)
5858
return super(build_ext_openmp, self).build_extension(ext)
59-
except:
59+
except Exception as _:
6060
print(f">>> compiling with '{' '.join(compile_args)}' failed")
6161

6262
print(">>> compiling with OpenMP support failed, re-trying without")

0 commit comments

Comments
 (0)