Skip to content

Commit d1dec4f

Browse files
committed
bump version to 0.2.7
1 parent ff56a25 commit d1dec4f

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 = "hatchling.build"
44

55
[project]
66
name = "arraybridge"
7-
version = "0.2.6"
7+
version = "0.2.7"
88
description = "Unified API for NumPy, CuPy, PyTorch, TensorFlow, JAX, and pyclesperanto with automatic memory type conversion"
99
authors = [{name = "Tristan Simas", email = "tristan.simas@mail.mcgill.ca"}]
1010
license = {text = "MIT"}
@@ -113,13 +113,13 @@ target-version = ["py39", "py310", "py311", "py312"]
113113

114114
[tool.ruff]
115115
line-length = 100
116-
target-version = "py39"
116+
target-version = "0.2.7"
117117

118118
[tool.ruff.lint]
119119
select = ["E", "F", "I", "N", "W", "UP"]
120120

121121
[tool.mypy]
122-
python_version = "3.9"
122+
python_version = "0.2.7"
123123
warn_return_any = true
124124
warn_unused_configs = true
125125
disallow_untyped_defs = false # Too strict for scientific code

src/arraybridge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
and unified utilities for working with multiple array/tensor frameworks.
66
"""
77

8-
__version__ = "0.2.6"
8+
__version__ = "0.2.7"
99

1010
from .converters import convert_memory, detect_memory_type
1111
from .decorators import (

0 commit comments

Comments
 (0)