diff --git a/dependencies.yaml b/dependencies.yaml index 096a644d..a10121b5 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -106,10 +106,6 @@ dependencies: specific: - output_types: conda matrices: - - matrix: - py: "3.9" - packages: - - python=3.9 - matrix: py: "3.10" packages: @@ -120,7 +116,7 @@ dependencies: - python=3.11 - matrix: packages: - - python>=3.9,<3.12 + - python>=3.10,<3.12 build_python: common: - output_types: [conda, requirements, pyproject] diff --git a/docker/ucx-py-cuda11.5.yml b/docker/ucx-py-cuda11.5.yml index 39c08700..c69f8620 100644 --- a/docker/ucx-py-cuda11.5.yml +++ b/docker/ucx-py-cuda11.5.yml @@ -4,7 +4,7 @@ channels: - conda-forge dependencies: - - python=3.9 + - python=3.10 - cudatoolkit=11.5 - setuptools - cython>=3.0.0 diff --git a/docs/source/install.rst b/docs/source/install.rst index b8712828..b0525650 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -89,7 +89,7 @@ Build Dependencies .. note:: The Python version must be explicitly specified here, UCX-Py currently supports - only Python 3.9, 3.10, and 3.11. + only Python 3.10 and 3.11. Test Dependencies ^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index f8727923..e3a7e7b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ authors = [ { name = "NVIDIA Corporation" }, ] license = { text = "BSD-3-Clause" } -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "numpy>=1.23,<3.0a0", "pynvml>=11.4.1",