Skip to content

Commit

Permalink
Update version to 3.12 due to bug in python dataclasses interacting w…
Browse files Browse the repository at this point in the history
…ith defaultdict
  • Loading branch information
zwimer committed Oct 13, 2024
1 parent 34f4d59 commit a060278
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
rev: v3.18.0
hooks:
- id: pyupgrade
args: [--py310-plus]
args: [--py312-plus]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
hooks:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ build-backend = "setuptools.build_meta"
name = "rpipe"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
keywords = ["remote", "pipe"]
license = {text = "GPLv3"}
description = "A little python remote pipe server and client."
urls = {Homepage = "https://github.com/zwimer/rpipe"}
requires-python = ">= 3.10"
requires-python = ">= 3.12"
dependencies = [
# Client
"zstandard[cffi]",
Expand Down Expand Up @@ -55,7 +55,7 @@ version = {attr = "rpipe.__version__"}

[tool.black]
line-length = 110
target-version = ["py310", "py311", "py312"]
target-version = ["py312", "py313"]

[tool.ruff]
line-length = 110
Expand Down
2 changes: 1 addition & 1 deletion rpipe/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "8.10.1" # Must be "<major>.<minor>.<patch>", all numbers
__version__: str = "9.0.0" # Must be "<major>.<minor>.<patch>", all numbers

0 comments on commit a060278

Please sign in to comment.