Skip to content

Commit 5317f08

Browse files
committed
Fix Python badge and add PyPI classifiers for 3.10+
1 parent e331515 commit 5317f08

5 files changed

Lines changed: 18 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# queuebridge
22

33
[![PyPI version](https://img.shields.io/pypi/v/queuebridge.svg)](https://pypi.org/project/queuebridge/)
4-
[![Python](https://img.shields.io/pypi/pyversions/queuebridge.svg)](https://pypi.org/project/queuebridge/)
4+
[![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://pypi.org/project/queuebridge/)
55
[![CI](https://github.com/false200/queuebridge/actions/workflows/ci.yml/badge.svg)](https://github.com/false200/queuebridge/actions/workflows/ci.yml)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
77

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
project = "queuebridge"
1313
copyright = "2026, false200"
1414
author = "false200"
15-
release = "0.1.1"
16-
version = "0.1.1"
15+
release = "0.1.2"
16+
version = "0.1.2"
1717

1818
extensions = [
1919
"sphinx.ext.autodoc",

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Pass Pydantic models to ``.delay()``, ``.send()``, or ``enqueue_job()``. Get mod
99
:target: https://pypi.org/project/queuebridge/
1010
:alt: PyPI version
1111

12-
.. image:: https://img.shields.io/pypi/pyversions/queuebridge.svg
12+
.. image:: https://img.shields.io/badge/python-3.10%2B-blue.svg
1313
:target: https://pypi.org/project/queuebridge/
14-
:alt: Python versions
14+
:alt: Python 3.10+
1515

1616
.. image:: https://github.com/false200/queuebridge/actions/workflows/ci.yml/badge.svg
1717
:target: https://github.com/false200/queuebridge/actions/workflows/ci.yml

pyproject.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
[project]
22
name = "queuebridge"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Bidirectional Pydantic serialization for Celery, Dramatiq, and Arq"
55
readme = "README.md"
66
license = { text = "MIT" }
77
requires-python = ">=3.10"
8+
classifiers = [
9+
"Development Status :: 4 - Beta",
10+
"Intended Audience :: Developers",
11+
"License :: OSI Approved :: MIT License",
12+
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.10",
14+
"Programming Language :: Python :: 3.11",
15+
"Programming Language :: Python :: 3.12",
16+
"Programming Language :: Python :: 3.13",
17+
"Topic :: Software Development :: Libraries :: Python Modules",
18+
]
819
dependencies = [
920
"pydantic>=2.5",
1021
"typing-extensions>=4.8",

src/queuebridge/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.1"
1+
__version__ = "0.1.2"

0 commit comments

Comments
 (0)