diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 112586fb..3c4f8121 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -9,7 +9,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [2.7, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a9c23f..84dfc430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. -## [2.4.16] - 2023-06-22 +## [3.0.0] - 2023-06-22 +### Changed +* Python 2 no longer supported ### Fixed * Wrong version parsing with number in name #102 * 90+ versions that look like dates triggered pre-release detection diff --git a/lastversion/__about__.py b/lastversion/__about__.py index 50441c48..e2ecb66c 100644 --- a/lastversion/__about__.py +++ b/lastversion/__about__.py @@ -1,2 +1,2 @@ -__version__ = '2.4.16' +__version__ = '3.0.0' __self__ = "dvershinin/lastversion" diff --git a/setup.py b/setup.py index 3ad776d4..a87210f0 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,6 @@ "Operating System :: OS Independent", "Topic :: Software Development", "Topic :: Utilities", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6" ], )