astartes v1.1.2
astartes
Patch Release 1.1.2
This release contains minor changes, primarily to the documentation, in response to initial editor comments at pyOpenSci. The primary difference in the codebase is that astartes
now has a __version__
attribute for backwards compatibility with Python 3.7.
To upgrade, run pip install --upgrade astartes
.
To check which version of astartes
you have installed, you can run python -c "import astartes; print(astartes.__version__)"
on Python 3.7 or python -c "from importlib.metadata import version; version('astartes')"
on Python 3.8 or newer.
What's Changed
- Pre-Submission Fixup for PyOpenSci by @JacksonBurns in #143
- pyOpenSci Initial Review Comments Fixup by @JacksonBurns in #147
- patch fixes for the previous patch fixes (version
1.1.2
) by @JacksonBurns in #148
Full Changelog: v1.1.1...v1.1.2