Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
v1.4.1: use explicit floating point widths, thus fixing a bug. (#53)
Browse files Browse the repository at this point in the history
* v1.4.1: use explicit floating point widths, thus fixing a bug.

* mention v1.4.1 also in README
  • Loading branch information
Dominik Neise authored Sep 14, 2018
1 parent 770a522 commit 32d125b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ You do not have to use a [conda environment](https://conda.io/docs/user-guide/ta

### Linux / OSX (with anaconda)

pip install https://github.com/cta-sst-1m/protozfitsreader/archive/v1.4.0.tar.gz
pip install https://github.com/cta-sst-1m/protozfitsreader/archive/v1.4.1.tar.gz

### Most common issues and possible remedies

Expand All @@ -263,7 +263,7 @@ Try uninstalling conda-protobuf and reinstalling from pypi, like this:

conda uninstall protobuf --yes
pip install protobuf

### Miniconda & Faster installation?

If you use **Ana**conda this is not interesting for you, but if you use **Mini**conda,
Expand Down
2 changes: 1 addition & 1 deletion protozfits/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.4.1
4 changes: 2 additions & 2 deletions protozfits/any_array_to_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def any_array_to_numpy(any_array):
6: np.uint32,
7: np.int64,
8: np.uint64,
9: np.float,
10: np.double,
9: np.float32,
10: np.float64,
}
if any_array.type == 0:
if any_array.data:
Expand Down

0 comments on commit 32d125b

Please sign in to comment.