Skip to content

Commit

Permalink
Support Python3.12, fix README badges
Browse files Browse the repository at this point in the history
  • Loading branch information
mortymacs committed Dec 10, 2023
1 parent 3fea18d commit 3955bad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Upload Python Package

on:
Expand Down
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.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# abcmeta
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/mortymacs/abcmeta/Python%20package)](https://github.com/mortymacs/abcmeta/actions/workflows/python-test.yml)
[![PyPi version](https://badgen.net/pypi/v/abcmeta/)](https://pypi.org/project/abcmeta)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/abcmeta.svg)](https://pypi.python.org/pypi/abcmeta/)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mortymacs/abcmeta/python-test.yml?style=flat-square)](https://github.com/mortymacs/abcmeta/actions/workflows/python-test.yml)
[![PyPi version](https://img.shields.io/pypi/v/abcmeta?style=flat-square)](https://pypi.org/project/abcmeta)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/abcmeta?style=flat-square)](https://pypi.python.org/pypi/abcmeta/)
[![PyPI version fury.io](https://badge.fury.io/py/abcmeta.svg)](https://pypi.python.org/pypi/abcmeta/)
[![PyPI download month](https://img.shields.io/pypi/dm/abcmeta.svg)](https://pypi.python.org/pypi/abcmeta/)
[![PyPI download month](https://img.shields.io/pypi/dm/abcmeta?style=flat-square)](https://pypi.python.org/pypi/abcmeta/)

Python meta class and abstract method library with restrictions.

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="abcmeta",
version="2.1.1",
version="2.1.2",
author="Morteza NourelahiAlamdari",
author_email="m@0t1.me",
description="Python meta class and abstract method library with restrictions.",
Expand All @@ -16,6 +16,7 @@
project_urls={"Bug Tracker": "https://github.com/mortymacs/abcmeta/issues"},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 3955bad

Please sign in to comment.