Skip to content

Commit

Permalink
Release v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Sep 19, 2024
1 parent 0b472bc commit ae6565a
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 26 deletions.
56 changes: 33 additions & 23 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
CIBW_TEST_REQUIRES: importlib-resources
with:
output-dir: dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.python-tag }}
path: dist/*

wheel-linux-x86_64:
Expand Down Expand Up @@ -81,9 +81,9 @@ jobs:
CIBW_TEST_REQUIRES: importlib-resources
with:
output-dir: dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.python-tag }}
path: dist/*

wheel-macos-x86_64:
Expand Down Expand Up @@ -117,9 +117,9 @@ jobs:
CIBW_TEST_REQUIRES: importlib-resources
with:
output-dir: dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.python-tag }}
path: dist/*

wheel-macos-aarch64:
Expand Down Expand Up @@ -148,9 +148,9 @@ jobs:
CIBW_TEST_REQUIRES: importlib-resources
with:
output-dir: dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.python-tag }}
path: dist/*

wheel-win32-x86_64:
Expand Down Expand Up @@ -185,9 +185,9 @@ jobs:
CIBW_TEST_REQUIRES: importlib-resources
with:
output-dir: dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.python-tag }}
path: dist/*

sdist:
Expand All @@ -206,9 +206,9 @@ jobs:
- name: Build source distribution
run: python setup.py sdist
- name: Store built source distribution
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wheels
name: sdist
path: dist/*

test-sdist:
Expand All @@ -221,11 +221,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Download built wheels
uses: actions/download-artifact@v2
- name: Download source distribution
uses: actions/download-artifact@v4
with:
name: wheels
path: dist/
name: sdist
path: dist/
merge-multiple: true
- name: Update pip to latest version
run: python -m pip install -U pip setuptools wheel
- name: Install built wheel
Expand All @@ -248,10 +249,18 @@ jobs:
- wheel-macos-x86_64
- wheel-win32-x86_64
steps:
- uses: actions/download-artifact@v2
- name: Download source distribution
uses: actions/download-artifact@v4
with:
name: wheels
path: dist
name: sdist
path: dist/
merge-multiple: true
- name: Download wheel distributions
uses: actions/download-artifact@v4
with:
pattern: wheels-*
path: dist/
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.ref, 'refs/tags')

Expand Down Expand Up @@ -288,11 +297,12 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Download built wheels
uses: actions/download-artifact@v2
- name: Download source distribution
uses: actions/download-artifact@v4
with:
name: wheels
path: dist
name: sdist
path: dist/
merge-multiple: true
- name: Extract package version
run: echo PKGVER=$(python setup.py --version) >> $GITHUB_ENV
- name: Compute SHA256 of source distribution
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[Unreleased]: https://github.com/althonos/pyfamsa/compare/v0.5.1...HEAD


## [v0.5.2] - 2024-09-19
[v0.5.2]: https://github.com/althonos/pyfamsa/compare/v0.5.1...v0.5.2

### Changed
- Update to FAMSA [`v2.2.3`](https://github.com/refresh-bio/FAMSA/releases/tag/v2.2.3).


## [v0.5.1] - 2024-08-28
[v0.5.1]: https://github.com/althonos/pyfamsa/compare/v0.5.0...v0.5.1

Expand Down
4 changes: 2 additions & 2 deletions docs/_static/json/switcher.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[
{
"name": "v0.5 (latest)",
"version": "0.5.1",
"url": "https://pyfamsa.readthedocs.io/en/v0.5.1/"
"version": "0.5.2",
"url": "https://pyfamsa.readthedocs.io/en/v0.5.2/"
},
{
"name": "v0.4",
Expand Down
2 changes: 1 addition & 1 deletion pyfamsa/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.1"
__version__ = "0.5.2"

0 comments on commit ae6565a

Please sign in to comment.