diff --git a/README.md b/README.md index b988bd31..75203eac 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ conda install -c rapidsai -c conda-forge -c nvidia \ cuxfilter python=3.11 cuda-version=11.8 ``` -Note: cuxfilter is supported only on Linux, and with Python versions 3.8 and later. +Note: cuxfilter is supported only on Linux, and with Python versions 3.10 and 3.11. ### PyPI diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index f51b12e0..d4e87117 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -38,7 +38,7 @@ dependencies: - pytest - pytest-cov - pytest-xdist -- python>=3.9,<3.12 +- python>=3.10,<3.12 - rapids-build-backend>=0.3.0,<0.4.0.dev0 - recommonmark - setuptools diff --git a/conda/environments/all_cuda-125_arch-x86_64.yaml b/conda/environments/all_cuda-125_arch-x86_64.yaml index 9225e412..7486c5cf 100644 --- a/conda/environments/all_cuda-125_arch-x86_64.yaml +++ b/conda/environments/all_cuda-125_arch-x86_64.yaml @@ -37,7 +37,7 @@ dependencies: - pytest - pytest-cov - pytest-xdist -- python>=3.9,<3.12 +- python>=3.10,<3.12 - rapids-build-backend>=0.3.0,<0.4.0.dev0 - recommonmark - setuptools diff --git a/dependencies.yaml b/dependencies.yaml index fe0d4e3c..dfa00bc5 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -163,10 +163,6 @@ dependencies: specific: - output_types: conda matrices: - - matrix: - py: "3.9" - packages: - - python=3.9 - matrix: py: "3.10" packages: @@ -177,7 +173,7 @@ dependencies: - python=3.11 - matrix: packages: - - python>=3.9,<3.12 + - python>=3.10,<3.12 rapids_build_setuptools: common: - output_types: [conda, requirements, pyproject] @@ -271,6 +267,6 @@ dependencies: - *cuspatial_unsuffixed - *dask_cudf_unsuffixed - cuxfilter==24.10.*,>=0.0.0a0 - - python>=3.9,<3.12 + - python>=3.10,<3.12 - pytest-benchmark - pytest-xdist diff --git a/pyproject.toml b/pyproject.toml index 44c2194e..cfd7c025 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 79 -target-version = ["py39"] +target-version = ["py310"] include = '\.py?$' force-exclude = ''' /( diff --git a/python/pyproject.toml b/python/pyproject.toml index 7d71acd7..dcf58289 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -16,7 +16,7 @@ authors = [ {name = "NVIDIA Corporation"}, ] license = { text = "Apache 2.0" } -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "bokeh>=3.1", "cudf==24.10.*,>=0.0.0a0", @@ -38,7 +38,6 @@ classifiers = [ "Topic :: Scientific/Engineering :: Visualization", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ]