Skip to content

Commit

Permalink
📦 Declare Python 3.9+ envs supported
Browse files Browse the repository at this point in the history
This is necessary for the CI to match the expected dists.
Additionally, the metadata makes the dependency resolver aware of
the supported runtimes.
  • Loading branch information
webknjaz committed Jan 7, 2025
1 parent fda7eeb commit b7b7388
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ upstreaming = [
name = 'pre-commit-terraform'
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',

'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',

'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
Expand All @@ -41,6 +44,7 @@ dynamic = [
'urls',
'version',
]
requires-python = ">= 3.9"

[[project.authors]]
name = 'Anton Babenko'
Expand Down

0 comments on commit b7b7388

Please sign in to comment.