Skip to content

Commit

Permalink
v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruno46 committed Jan 18, 2023
1 parent 1480f49 commit ddf84f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Future milestones:
- expected chi square and quality of fit
- exponential tail

version 1.5.0, :
version 1.4.1, 18.01.2023:
- fixed bug in transform (roll, sort..)
- improved behavior under roundoff errors
- fixed compatibility issues with numpy>=1.24.0
Expand Down
2 changes: 1 addition & 1 deletion pyobs/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.0
v1.4.1
1 change: 0 additions & 1 deletion pyobs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,3 @@ def double_array(arg, zeros=False):

def int_array(arg, zeros=False):
return pyobs_array(arg, numpy.int32, zeros)

4 changes: 2 additions & 2 deletions pyobs/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.4.0"
__version_full__ = __version__
__version__ = "1.4.1"
__version_full__ = __version__
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, Extension
import os

VERSION = (1, 4, 0)
VERSION = (1, 4, 1)

def get_numpy_include():
import numpy
Expand Down

0 comments on commit ddf84f2

Please sign in to comment.