Skip to content

Commit

Permalink
Update Python version support. (#574)
Browse files Browse the repository at this point in the history
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: #574
  • Loading branch information
bdice authored Jun 17, 2022
1 parent 61e386b commit dbebf67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 79
target-version = ["py36"]
target-version = ["py38"]
include = '\.py?$'
exclude = '''
/(
Expand All @@ -16,4 +16,4 @@ exclude = '''
build |
dist
)/
'''
'''
4 changes: 2 additions & 2 deletions python/cuspatial/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]},
Expand Down

0 comments on commit dbebf67

Please sign in to comment.