Skip to content

Commit 47bff1c

Browse files
committed
Update supported python versions
1 parent 2a58ffd commit 47bff1c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.11']
18+
python-version: ['3.8', '3.9', '3.10', '3.11']
1919

2020
steps:
2121
- uses: actions/checkout@v3

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def read(filename):
1818
url='https://github.com/guardian/python-alerta',
1919
license='Apache License 2.0',
2020
author='Nick Satterly',
21-
author_email='nick.satterly@gmail.com',
21+
author_email='nfsatterly@gmail.com',
2222
packages=setuptools.find_packages(exclude=['tests']),
2323
install_requires=[
2424
'Click',
@@ -42,12 +42,12 @@ def read(filename):
4242
'Intended Audience :: System Administrators',
4343
'Intended Audience :: Telecommunications Industry',
4444
'License :: OSI Approved :: Apache Software License',
45+
'Programming Language :: Python :: 3.11',
46+
'Programming Language :: Python :: 3.10',
4547
'Programming Language :: Python :: 3.9',
4648
'Programming Language :: Python :: 3.8',
47-
'Programming Language :: Python :: 3.7',
48-
'Programming Language :: Python :: 3.6',
4949
'Topic :: System :: Monitoring',
5050
'Topic :: Software Development :: Libraries :: Python Modules'
5151
],
52-
python_requires='>=3.6'
52+
python_requires='>=3.8'
5353
)

0 commit comments

Comments
 (0)