Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The PyLops project strives to create a library that is easy to install in
any environment and has a very limited number of dependencies.
Required dependencies are limited to:

* Python 3.10 or greater
* Python 3.11 or greater
* `NumPy <http://www.numpy.org>`_
* `SciPy <http://www.scipy.org/scipylib/index.html>`_

Expand Down
1 change: 1 addition & 0 deletions environment-dev-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies:
- Sphinx
- numpydoc
- numba
- numba-cuda
- icc_rt
- pre-commit
- autopep8
Expand Down
2 changes: 1 addition & 1 deletion environment-dev-intel-mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
- defaults
- numba
dependencies:
- python>=3.10.0
- python>=3.11.0
- pip
- numpy>=2.0.0
- scipy>=1.13.0
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def lint(session):
)


@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"])
@nox.session(python=["3.11", "3.12", "3.13", "3.14"])
def tests(session: nox.Session) -> None:
"""
Run unit tests.
Expand All @@ -36,7 +36,7 @@ def tests(session: nox.Session) -> None:
session.run("pytest", *session.posargs)


@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"])
@nox.session(python=["3.11", "3.12", "3.13", "3.14"])
def build(session: nox.Session) -> None:
"""
Build an SDist and wheel.
Expand Down
25 changes: 18 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,16 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Mathematics",
]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"numpy >= 1.21.0",
"scipy >= 1.11.0",
"numpy >= 2.0.0",
"scipy >= 1.13.0",
]
dynamic = ["version"]

Expand All @@ -50,13 +49,13 @@ advanced = [
"devito",
"curvelets >= 1.2"
]
gpu-cu12 = ["cupy-cuda12x"]
gpu-cu13 = ["cupy-cuda13x"]
gpu-cu12 = ["cupy-cuda12x", "numba-cuda[cu12]>=0.30.0"]
gpu-cu13 = ["cupy-cuda13x", "numba-cuda[cu13]>=0.30.0"]
stat = ["pytensor", "pymc"]
deep = ["torch", "jax"]
deep-cu126 = ["torch<2.11.0", "jax[cuda12]"]
deep-cu128 = ["torch<2.11.0", "jax[cuda12]"]
deep-cu13 = ["torch>=2.11.0", "jax[cuda13]"]
deep-cu13 = ["torch>=2.11.0", "jax[cuda13]>=0.8.0"]

[dependency-groups]
dev = [
Expand Down Expand Up @@ -121,6 +120,18 @@ conflicts = [
{ extra = "deep-cu128" },
{ extra = "deep-cu13" },
],
[
{ extra = "gpu-cu12" },
{ extra = "deep-cu13" },
],
[
{ extra = "gpu-cu13" },
{ extra = "deep-cu126" },
],
[
{ extra = "gpu-cu13" },
{ extra = "deep-cu128" },
],
]

[tool.uv.sources]
Expand Down
Loading
Loading