Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release-v4.5' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Aug 7, 2024
2 parents 19429c4 + e45b699 commit a29748b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ repos:
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.2
rev: v0.5.6
hooks:
- id: ruff
args: [--fix, --select, I, --exit-non-zero-on-fix]
- id: ruff-format
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.371
rev: v1.1.374
hooks:
- id: pyright
additional_dependencies: [cython, httpretty, numpy, pytest]
2 changes: 1 addition & 1 deletion cryosparc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.5.0"
__version__ = "4.5.1"


def get_include():
Expand Down
4 changes: 2 additions & 2 deletions cryosparc/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,11 +708,11 @@ def __init__(
List[Tuple[str, "ArrayLike"]],
Literal[None],
] = 0,
row_class: Type[R] = Row,
row_class=Row,
):
# Always initialize with at least a UID field
super().__init__()
self._row_class = row_class
self._row_class = row_class # type: ignore
self._rows = None

if isinstance(allocate, Dataset):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cryosparc-tools"
version = "4.5.0"
version = "4.5.1"
description = "Toolkit for interfacing with CryoSPARC"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

setup(
name="cryosparc_tools",
version="4.5.0",
version="4.5.1",
description="Toolkit for interfacing with CryoSPARC",
headers=["cryosparc/include/cryosparc-tools/dataset.h"],
ext_modules=cythonize(
Expand Down

0 comments on commit a29748b

Please sign in to comment.