Skip to content

Commit

Permalink
Apply fix and bump version and related info
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrisvetlov committed Jul 9, 2024
1 parent 756f1e4 commit 67079be
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
BSD 3-Clause License

Copyright (c) 2020, Henry Pinkard
Copyright (c) 2020, Henry Pinkard and
Copyright (c) 2020, Munsky Group

All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion pycromanager/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 23, 0)
version_info = (0, 23, 1)
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion pycromanager/zmq_bridge/_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ def _camel_case_2_snake_case(name):
}
#Used for deserializing java arrarys into numpy arrays
_JAVA_ARRAY_TYPE_NUMPY_DTYPE = {
"boolean[]": np.bool,
"boolean[]": bool,
"byte[]": np.uint8,
"short[]": np.int16,
"char[]": np.uint16,
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
setuptools.setup(
name="pycromanager",
version=version,
author="Henry Pinkard",
author_email="[email protected]",
author="Munsky Group",
author_email="[email protected]",
description="Open source microscope control using python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/micro-manager/pycro-manager",
url="https://github.com/MunskyGroup/pycro-manager-munsky",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
Expand Down

0 comments on commit 67079be

Please sign in to comment.