Skip to content

Commit 42bd631

Browse files
committed
Bump version: 3.1 → 3.2
1 parent 69cee97 commit 42bd631

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "workflows"
7-
version = "3.1"
7+
version = "3.2"
88
description = "Data processing in distributed environments"
99
readme = "README.rst"
1010
authors = [
@@ -19,7 +19,7 @@ classifiers = [
1919
"Topic :: Software Development :: Libraries :: Python Modules",
2020
]
2121
license = { text = "BSD-3-Clause" }
22-
requires-python = ">=3.10"
22+
requires-python = ">=3.20"
2323
dependencies = ["bidict", "pika", "setuptools", "stomp-py>=7"]
2424

2525
[project.urls]
@@ -65,7 +65,7 @@ addopts = "-ra"
6565
required_plugins = "pytest-timeout"
6666

6767
[tool.bumpversion]
68-
current_version = "3.1"
68+
current_version = "3.2"
6969
parse = '(?P<major>\d+)\.(?P<minor>\d+)'
7070
serialize = ["{major}.{minor}"]
7171
commit = true

src/workflows/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
__version__ = "3.1"
3+
__version__ = "3.2"
44

55

66
def version() -> str:

0 commit comments

Comments
 (0)