Skip to content

Commit

Permalink
Fix compatibility with Pandas 2.2.2.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 659361784
  • Loading branch information
raj-sinha authored and The spade_anomaly_detection Authors committed Aug 5, 2024
1 parent c8bdc31 commit 925d008
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

## [Unreleased]

## [0.3.3] - 2024-08-05

* Add support for wildcards in GCS URIs in CSV data loader.
* Upgrade Pandas to 2.2.2.

## [0.3.2] - 2024-07-16

* Exposes the `n_component` and `covariance_type` parameters of the one-class classifier.
Expand Down Expand Up @@ -53,7 +58,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

* Initial release

[Unreleased]: https://github.com/google-research/spade_anomaly_detection/compare/v0.3.2...HEAD
[Unreleased]: https://github.com/google-research/spade_anomaly_detection/compare/v0.3.3...HEAD
[0.3.3]: https://github.com/google-research/spade_anomaly_detection/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/google-research/spade_anomaly_detection/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/google-research/spade_anomaly_detection/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/google-research/spade_anomaly_detection/compare/v0.2.2...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies = [
"absl-py==1.4.0",
"frozendict==2.3.2",
"joblib==1.2.0",
"pandas==1.3.5",
"pandas==2.2.2",
"pyarrow==14.0.1",
"retry==0.9.2",
"scikit-learn==1.4.2",
Expand Down
2 changes: 1 addition & 1 deletion spade_anomaly_detection/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@

# A new PyPI release will be pushed every time `__version__` is increased.
# When changing this, also update the CHANGELOG.md.
__version__ = '0.3.2'
__version__ = '0.3.3'
2 changes: 1 addition & 1 deletion spade_anomaly_detection/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
absl-py==1.4.0
frozendict==2.3.2
joblib==1.2.0
pandas==1.3.5
pandas==2.2.2
pyarrow==14.0.1
retry==0.9.2
scikit-learn==1.4.2
Expand Down

0 comments on commit 925d008

Please sign in to comment.