Skip to content

Commit

Permalink
Merge pull request #99 from KevinMenden/development
Browse files Browse the repository at this point in the history
PR for bugfix release 1.1.2
  • Loading branch information
KevinMenden committed Jun 10, 2021
2 parents 03bb0a6 + 47d9697 commit f394f71
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Scaden Changelog

## Version 1.1.2

* Changed datatype for data simulation back to `float32`

## Version 1.1.1

* Fixed bugs in scaden model definition [[#88](https://github.com/KevinMenden/scaden/issues/88)]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Scaden](docs/img/scaden_logo.png)

![Scaden version](https://img.shields.io/badge/scaden-v1.1.1-cyan)
![Scaden version](https://img.shields.io/badge/scaden-v1.1.2-cyan)
![MIT](https://img.shields.io/badge/License-MIT-black)
![Install with pip](https://img.shields.io/badge/Install%20with-pip-blue)
[![Downloads](https://pepy.tech/badge/scaden)](https://pepy.tech/project/scaden)
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Scaden Changelog

## Version 1.1.2

* Changed datatype for data simulation back to `float32`

## Version 1.1.1

* Fixed bugs in scaden model definition [[#88](https://github.com/KevinMenden/scaden/issues/88)]
Expand Down
2 changes: 1 addition & 1 deletion scaden/simulation/bulk_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def load_dataset(self, dataset):
x = pd.read_table(
os.path.join(self.data_path, dataset_counts),
index_col=0,
dtype=np.float16,
dtype=np.float32,
)
except FileNotFoundError as e:
logger.error(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

version = "1.1.1"
version = "1.1.2"


with open("README.md", "r", encoding="UTF-8") as fh:
Expand Down

0 comments on commit f394f71

Please sign in to comment.