diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 6b53367..e9154e8 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 243e8f3..da70304 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="abcmeta", - version="2.2.0", + version="2.2.1", author="Morteza NourelahiAlamdari", author_email="m@0t1.me", description="Python meta class and abstract method library with restrictions.", @@ -16,15 +16,14 @@ project_urls={"Bug Tracker": "https://github.com/mortymacs/abcmeta/issues"}, classifiers=[ "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.7", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Operating System :: OS Independent", ], packages=find_packages(), - python_requires=">=3.7", + python_requires=">=3.9", )