@@ -12,38 +12,37 @@ high-performant time-series feature extractors.
12
12
13
13
``` sh
14
14
python3 -mpip install ' light-curve[full]'
15
+ # or
16
+ conda install -c conda-forge light-curve-python
15
17
```
16
18
17
19
` full ` extras would install the package with all optional Python dependencies required by experimental
18
20
features.
19
21
We also provide ` light-curve-python ` package which is just an "alias" to the main ` light-curve[full] ` package.
20
22
21
23
Minimum supported Python version is 3.9.
22
- We provide binary CPython wheels via [ PyPi] ( https://pypi.org/project/light-curve/ ) for a number of platforms
23
- and
24
- architectures.
24
+ We provide binary CPython wheels via [ PyPi] ( https://pypi.org/project/light-curve/ )
25
+ and [ Anaconda] ( https://anaconda.org ) for a number of platforms and architectures.
25
26
We also provide binary wheels for stable CPython ABI, so the package is guaranteed to work with all future
26
27
CPython3
27
28
versions.
28
29
29
30
### Support matrix
30
31
31
- | Arch \ OS | Linux glibc 2.17+ | Linux musl 1.1+ | macOS | Windows https://github.com/light-curve/light-curve-python/issues/186 |
32
- | -------------| -------------------| --------------------------------| -----------| ----------------------------------------------------------------------|
33
- | ** x86-64** | wheel (MKL) | wheel (MKL) | wheel 13+ | wheel (no Ceres, no GSL) |
34
- | ** i686** | src | src | — | not tested |
35
- | ** aarch64** | wheel | wheel | wheel 14+ | not tested |
36
- | ** ppc64le** | src | not tested (no Rust toolchain) | — | — |
37
-
38
- - "wheel": binary wheel is available on pypi.org, local building is not required for the platform, the only
39
- pre-requirement is a recent ` pip ` version. For Linux x86-64 we provide binary wheels built with Intel MKL
40
- for better
41
- periodogram performance, which is not a default build option. For Windows x86-64 we provide wheel with no
42
- Ceres and no
43
- GSL support, which is not a default build option.
44
- - "src": the package is confirmed to be built and pass unit tests locally, but testing and package building is
45
- not
46
- supported by CI. See [ "Build from source"] section bellow for the details.
32
+ | Arch \ OS | Linux glibc 2.17+ | Linux musl 1.1+ | macOS | Windows https://github.com/light-curve/light-curve-python/issues/186 |
33
+ | -------------| -------------------| --------------------------------| -----------------------| ----------------------------------------------------------------------|
34
+ | ** x86-64** | PyPI (MKL), conda | PyPI (MKL), conda | PyPI macOS 13+, conda | PyPI, conda (both no Ceres, no GSL) |
35
+ | ** i686** | src | src | — | not tested |
36
+ | ** aarch64** | wheel | wheel | PyPI macOS 14+ | not tested |
37
+ | ** ppc64le** | src | not tested (no Rust toolchain) | — | — |
38
+
39
+ - "PyPI" / "conda": binary wheel/package is available on pypi.org / anaconda.org, local building
40
+ is not required for the platform, the only pre-requirement is a recent ` pip ` version or
41
+ conda. For Linux x86-64 PyPI's wheel we provide binary wheels built with Intel MKL
42
+ for better periodogram performance, which is not a default build option. For Windows x86-64
43
+ we provide wheel with no Ceres and no GSL support, which is not a default build option.
44
+ - "src": the package is confirmed to be built and pass unit tests locally, but testing and package
45
+ building is not supported by CI. See [ "Build from source"] section bellow for the details.
47
46
- "not tested": building from the source code is not tested, please report us building status via
48
47
issue/PR/email.
49
48
0 commit comments