Skip to content

Commit 47acdb4

Browse files
committed
support python >=3.9
1 parent 3fc2235 commit 47acdb4

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/ci.yml

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
strategy:
1111
matrix:
1212
python-version:
13-
- "3.7"
14-
- "3.8"
1513
- "3.9"
1614
- "3.10"
1715
- "3.11"

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
entry: pyupgrade
4343
language: system
4444
types: [python]
45-
args: [--py37-plus]
45+
args: ["--py39-plus"]
4646
- id: trailing-whitespace
4747
name: Trim Trailing Whitespace
4848
entry: trailing-whitespace-fixer

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
{name = "Matthew Hanson", email = "[email protected]"},
1212
]
1313
description = "STAC Items in the terminal"
14-
requires-python = ">=3"
14+
requires-python = ">=3.9"
1515
keywords = [
1616
"stac",
1717
]
@@ -20,8 +20,6 @@ classifiers = [
2020
"Intended Audience :: Information Technology",
2121
"Intended Audience :: Science/Research",
2222
"License :: OSI Approved :: MIT License",
23-
"Programming Language :: Python :: 3.7",
24-
"Programming Language :: Python :: 3.8",
2523
"Programming Language :: Python :: 3.9",
2624
"Programming Language :: Python :: 3.10",
2725
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)