Skip to content

Commit

Permalink
Update to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexShkarin committed Jan 13, 2022
1 parent e36d732 commit 8026a79
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ you can write
import pylablib.legacy as pll
from pylablib.legacy.aux_libs.devices import Lakeshore
1.3.3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Numpy ``loads`` bugfix (fixes compatibility with ``numpy>=1.22``).

1.3.2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
# -- Project information -----------------------------------------------------

project = 'pylablib'
copyright = '2021, Alexey Shkarin'
copyright = '2022, Alexey Shkarin'
author = 'Alexey Shkarin'

# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.3.2'
release = '1.3.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pylablib/core/utils/strdump.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def dumps(self, obj):


### Numpy array ###
dumper.add_class(np.ndarray,np.ndarray.dumps,np.loads,"np")
dumper.add_class(np.ndarray,np.ndarray.dumps,pickle.loads,"np")



Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
setup(
name='pylablib',
# name='pylablib-lightweight',
version='1.3.2',
version='1.3.3',
description='Code for use in lab environment: experiment automation, data acquisition, device communication',
long_description=long_description,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 8026a79

Please sign in to comment.