-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ver): dynamic version identifiers
This adds a dynamic version identifier to Ibis installs -- this should have no discernable impact on users installing from `conda` or `pypi` (or from released versions generally). For users who install from source, it generates a version of the form: ``` <most_recent_release>-post.<numcommits_since_release>+<short_sha_of_HEAD>(.dirty)? ``` The `dirty` suffix is added if there are unstaged changes when the install is performed. This will help us help users and other devs track which exact version is installed when troubleshooting / comparing performance. The `version` identifier in `pyproject.toml` is not affected by this process and should display the last released version (currently 2.1.1). The `__version__` string in `ibis/__init__.py` is now also hard-coded to `"2.1.1"` During a release, `poetry version` will bump the version in the `pyproject.toml` file. I've also added a plugin for the semantic release bot to automatically replace the version string in the `__init__.py` file.
- Loading branch information
Showing
9 changed files
with
90 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
408f862
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold
2
.ibis/tests/benchmarks/test_benchmarks.py::test_complex_datatype_parse
3688362.900324405
iter/sec (stddev: 6.57489566235814e-8
)11718454.107254041
iter/sec (stddev: 4.08852857196761e-9
)3.18
This comment was automatically generated by workflow using github-action-benchmark.