From 741789c3c9ccbe58748fba7c8875a1d2f8ae13b6 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Wed, 26 Oct 2022 15:27:40 -0400 Subject: [PATCH] Upgrade to python 3.11 --- CHANGELOG.md | 2 +- docs/source/running_elastalert.rst | 6 +++--- setup.py | 2 +- tests/tox.ini | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba4432c5..e488fdb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - None ## Other changes -- None +- Upgrade to Python 3.11 - [#989](https://github.com/jertel/elastalert2/pull/989) - @jertel # 2.8.0 diff --git a/docs/source/running_elastalert.rst b/docs/source/running_elastalert.rst index e59f0f4c..64a44dbf 100644 --- a/docs/source/running_elastalert.rst +++ b/docs/source/running_elastalert.rst @@ -206,11 +206,11 @@ Requirements - Elasticsearch 7.x or 8.x, or OpenSearch 1.x or 2.x - ISO8601 or Unix timestamped data -- Python 3.10. Require OpenSSL 1.1.1 or newer. +- Python 3.11. Require OpenSSL 1.1.1 or newer. - pip -- Packages on Ubuntu 21.x: build-essential python3-pip python3.10 python3.10-dev libffi-dev libssl-dev +- Packages on Ubuntu 21.x: build-essential python3-pip python3.11 python3.11-dev libffi-dev libssl-dev -If you want to install python 3.10 on CentOS, please install python 3.10 from the source code after installing 'Development Tools'. +If you want to install python 3.11 on CentOS, please install python 3.11 from the source code after installing 'Development Tools'. Downloading and Configuring --------------------------- diff --git a/setup.py b/setup.py index 7cdafae0..3ba07863 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ "Discussion Forum": "https://github.com/jertel/elastalert2/discussions", }, classifiers=[ - 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', ], diff --git a/tests/tox.ini b/tests/tox.ini index c5487d68..7933b4a2 100644 --- a/tests/tox.ini +++ b/tests/tox.ini @@ -1,6 +1,6 @@ [tox] project = elastalert -envlist = py310,docs +envlist = py311,docs setupdir = .. [testenv]