Skip to content

Commit a6eed48

Browse files
Merge pull request #423 from pepkit/dev
Release 0.35.3
2 parents 598e82d + 9d497ba commit a6eed48

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

docs/changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Changelog
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
4+
5+
## [0.35.3] -- 2022-11-16
6+
### Fixed
7+
- Returning `NaN` value in initialization project from pandas df
8+
49
## [0.35.2] -- 2022-09-13
510
### Fixed
11+
612
- Returning `NaN` value within `to_dict` method was fixed and method now returns `None` instead
713
## [0.35.1] -- 2022-09-07
814
### Changed

peppy/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.35.2"
1+
__version__ = "0.35.3"

peppy/project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def from_pandas(
182182
"""
183183
if not config:
184184
config = {CONFIG_VERSION_KEY: PEP_LATEST_VERSION}
185-
self[SAMPLE_DF_KEY] = samples_df
185+
self[SAMPLE_DF_KEY] = samples_df.replace(np.nan, "")
186186
self[SUBSAMPLE_DF_KEY] = sub_samples_df
187187

188188
self[SAMPLE_DF_LARGE] = self[SAMPLE_DF_KEY].shape[0] > 1000

0 commit comments

Comments
 (0)