Skip to content

Commit

Permalink
Add Python 3.11 support (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
exxamalte authored Jan 31, 2024
1 parent c0a567d commit ae1715c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [ "3.8", "3.9", "3.10" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.black]
target-version = ['py38', 'py39', 'py310']
target-version = ['py38', 'py39', 'py310', 'py311']

[tool.isort]
profile = "black"
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""Setup of georss_ingv_centro_nazionale_terremoti_client library."""
import os

from setuptools import find_packages, setup
Expand All @@ -15,7 +16,7 @@
]


with open("README.md", "r") as fh:
with open("README.md") as fh:
long_description = fh.read()

HERE = os.path.abspath(os.path.dirname(__file__))
Expand All @@ -35,10 +36,10 @@
url=URL,
packages=find_packages(exclude=("tests*",)),
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit ae1715c

Please sign in to comment.