summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2022-12-12 11:00:52 +0100
committernicolargo <nicolas@nicolargo.com>2022-12-12 11:00:52 +0100
commit440fb972cee88c951e2da4fd6e8d9ad3a62f6ab8 (patch)
tree4bc46e48a154ce94f67b98523b349666b86def8d
parented4cc5e20ee03b95fce7e8140740e65b3cd6cdd7 (diff)
Drop UT for Python 3.5 and 3.6 (no more available in Ubuntu 22.04)
-rw-r--r--.github/workflows/test.yml2
-rwxr-xr-xsetup.py4
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 77841f0c..219a4731 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
+ python-version: ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
diff --git a/setup.py b/setup.py
index 36c64a1b..50a0cad8 100755
--- a/setup.py
+++ b/setup.py
@@ -135,13 +135,11 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
'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',
'Topic :: System :: Monitoring'
]
)