Skip to content

Commit

Permalink
Merge pull request #66 from cryoem-uoft/release-v4.4
Browse files Browse the repository at this point in the history
Release v4.4.1
  • Loading branch information
nfrasser authored Dec 5, 2023
2 parents 3955233 + 27bf96f commit b5b3643
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v4.4.1

- Fixed: Correct command response error data formatting

## v4.4.0

- Added: Python 3.11 and 3.12 support
Expand Down
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.4.0"
__version__ = "4.4.1"


def get_include():
Expand Down
2 changes: 1 addition & 1 deletion cryosparc/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def make_request(
)
if error.readable():
resdata = error.read()
error_reason += f"\nResponse from server: {data}"
error_reason += f"\nResponse from server: {resdata}"
if resdata and error.headers.get_content_type() == "application/json":
resdata = json.loads(resdata)

Expand Down
2 changes: 1 addition & 1 deletion cryosparc/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from typing_extensions import Literal, TypedDict

# Database document
D = TypeVar("D", bound=TypedDict)
D = TypeVar("D")


Datatype = Literal[
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.4.0"
version = "4.4.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 @@ -24,7 +24,7 @@

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

1 comment on commit b5b3643

@vercel
Copy link

@vercel vercel bot commented on b5b3643 Dec 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.