From 13696113e35302ccfe9d2843f4f9d3ba09ab64df Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Fri, 17 Jun 2022 18:23:17 -0500 Subject: [PATCH] Update Python version support. (#574) This PR updates Python version classifiers to use the versions of Python currently supported by RAPIDS (3.8, 3.9). Authors: - Bradley Dice (https://github.com/bdice) Approvers: - H. Thomson Comer (https://github.com/thomcom) URL: https://github.com/rapidsai/cuspatial/pull/574 --- pyproject.toml | 4 ++-- python/cuspatial/setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 70c78f7d7..a756854ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 79 -target-version = ["py36"] +target-version = ["py38"] include = '\.py?$' exclude = ''' /( @@ -16,4 +16,4 @@ exclude = ''' build | dist )/ -''' \ No newline at end of file +''' diff --git a/python/cuspatial/setup.py b/python/cuspatial/setup.py index 5fdc84940..4e81705b5 100644 --- a/python/cuspatial/setup.py +++ b/python/cuspatial/setup.py @@ -20,8 +20,8 @@ "Topic :: Scientific/Engineering", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], packages=find_packages(include=["cuspatial", "cuspatial.*"]), package_data={"cuspatial._lib": ["*.pxd"]},