diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 836257e..9dc4af3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,5 +17,5 @@ jobs: tox_env: ${{ matrix.tox_env }} strategy: matrix: - tox_env: [py27, py36, py38, py39, py310, py311, py312, py313, black, isort, flake8] + tox_env: [py36, py38, py39, py310, py311, py312, py313, black, isort, flake8] runs-on: ubuntu-latest diff --git a/README.rst b/README.rst index 7116650..961304e 100644 --- a/README.rst +++ b/README.rst @@ -2,11 +2,10 @@ CVSS ==== This Python package contains CVSS v2, v3 and v4 computation utilities and -interactive calculator (for v2 and v3 only) compatible with both Python 2 and Python 3. +interactive calculator (for v2 and v3 only) compatible with Python 3. The library is tested on all currently-supported Python versions available -via GitHub Actions (with the exception of Python 2.7, which is EOL but -still tested against), but it is simple enough to run on even older versions. +via GitHub Actions but it is simple enough to run on even older versions. Installation ------------ diff --git a/setup.py b/setup.py index 60c5c35..53763fc 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,6 @@ "Intended Audience :: Developers", "Topic :: Security", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", diff --git a/tox.ini b/tox.ini index 1c82653..42201b2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,36,38,39,310,311,312,313},black,isort,flake8 +envlist = py{36,38,39,310,311,312,313},black,isort,flake8 [testenv] deps = jsonschema