Skip to content

Commit

Permalink
removed util._get_implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
astanziola committed Sep 17, 2024
1 parent 2a907cc commit 9c1629f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
- Fixed `util.get_implemented` bug that was happening with the new version of `plum`

### Removed
- Removed the deprecated `util._get_implemented` function

## [0.2.7] - 2023-11-24
### Changed
- The Quickstart tutorial has been upgdated.
Expand Down
10 changes: 0 additions & 10 deletions jaxdf/util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import warnings

from jax.numpy import expand_dims, ndarray


Expand All @@ -22,14 +20,6 @@ def update_dictionary(old: dict, new_entries: dict):
return old


def _get_implemented(f):
warnings.warn(
"jaxdf.util._get_implemented is deprecated. Use jaxdf.util.get_implemented instead.",
DeprecationWarning,
)
return get_implemented(f)


def get_implemented(f):
r"""Prints the implemented methods of an operator
Expand Down

0 comments on commit 9c1629f

Please sign in to comment.