Add __version__ attribute to package#77
Open
SebastianSchmidl wants to merge 1 commit intoCompML:mainfrom
Open
Conversation
SebastianSchmidl
added a commit
to aeon-toolkit/aeon
that referenced
this pull request
Aug 13, 2024
…d skiptests conditions if not installed
SebastianSchmidl
pushed a commit
to aeon-toolkit/aeon
that referenced
this pull request
Sep 2, 2024
…1938) * feat: add TSAD metrics and tests from TimeEval * fix: prts soft dependency specification * feat: update CODEOWNERS * feat: add to docs * fix: prts version specification until CompML/PRTS#77 is merged and add skiptests conditions if not installed * feat: handle str-object-names in check_soft_dependencies correctly * fix: check_soft_dependencies test case for str-object reference * fix: address PR review change requests
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
prts has no
prts.__version__property, which makes integrating it in other packages complicated. Many tools use<module>.__version__to check compatibility at runtime.This PR adds the
__version__property to the package, set to the current version on PyPI.