Skip to content

Commit

Permalink
FIX: Revert to suport old pandas API too.
Browse files Browse the repository at this point in the history
  • Loading branch information
gialdetti committed Aug 28, 2024
1 parent 26f0c13 commit 9456bff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.0.92] - 2024-08-28
### Fixed
* Revert to suport old pandas API too.

## [0.0.91] - 2024-08-28
* MAINT: Address GitHub's detected security vulnerabilities
* MAINT: Address GitHub's detected security vulnerabilities.

## [0.0.9] - 2024-08-27
### Added
* MAINT: update setup.py to support multiple modes
* API: support multiple tickers
* MAINT: update setup.py to support multiple modes.
* API: support multiple tickers.
### Fixed
* Align with the pandas new APIs.

Expand Down
1 change: 0 additions & 1 deletion capon/preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def normalize_traces(
.apply(
lambda g: g[values] / g[g[index] >= to].nsmallest(1, index).iloc[0][values]
- baseline,
include_groups=False,
)
.reset_index(by, drop=True)
.astype(float)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name="capon",
version="0.0.91",
version="0.0.92",
author="Eyal Gal",
author_email="[email protected]",
description="Capital Market in Python",
Expand Down

0 comments on commit 9456bff

Please sign in to comment.