Skip to content

Commit d27f40a

Browse files
authored
Required Python now 3.6 or greater (#231)
1 parent aa1f991 commit d27f40a

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,14 @@ Alerta Command-Line Tool
22
========================
33

44
[![Actions Status](https://github.com/alerta/python-alerta-client/workflows/CI%20Tests/badge.svg)](https://github.com/alerta/python-alerta-client/actions)
5-
[![Gitter chat](https://badges.gitter.im/alerta/chat.png)](https://gitter.im/alerta/chat) [![Coverage Status](https://coveralls.io/repos/github/alerta/python-alerta-client/badge.svg?branch=master)](https://coveralls.io/github/alerta/python-alerta-client?branch=master) ![Docker Build and Push](https://github.com/alerta/python-alerta-client/workflows/Docker%20Build%20and%20Push/badge.svg)
5+
[![Gitter chat](https://badges.gitter.im/alerta/chat.png)](https://gitter.im/alerta/chat) [![Coverage Status](https://coveralls.io/repos/github/alerta/python-alerta-client/badge.svg?branch=master)](https://coveralls.io/github/alerta/python-alerta-client?branch=master)
66

77
Unified command-line tool, terminal GUI and python SDK for the Alerta monitoring system.
88

99
![screen shot](/docs/images/alerta-top-80x25.png?raw=true&v=1)
1010

1111
Related projects can be found on the Alerta Org Repo at <https://github.com/alerta/>.
1212

13-
----
14-
15-
Python 2.7 support is EOL
16-
-------------------------
17-
18-
Starting with Release 6.0 only Python 3.5+ is supported. Release 5.2 was the
19-
last to support Python 2.7 and feature enhancements for this release ended on
20-
August 31, 2018. Only critical bug fixes will be backported to Release 5.2.
21-
2213
Installation
2314
------------
2415

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +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.9',
46+
'Programming Language :: Python :: 3.8',
4547
'Programming Language :: Python :: 3.7',
4648
'Programming Language :: Python :: 3.6',
47-
'Programming Language :: Python :: 3.5',
4849
'Topic :: System :: Monitoring',
4950
'Topic :: Software Development :: Libraries :: Python Modules'
5051
],
51-
python_requires='>=3.5'
52+
python_requires='>=3.6'
5253
)

0 commit comments

Comments
 (0)