Skip to content

Commit

Permalink
Drop python3.7 and 3.8, add python3.13 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortymacs authored Nov 3, 2024
1 parent daaf6f3 commit 871f4a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand All @@ -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",
)

0 comments on commit 871f4a4

Please sign in to comment.