Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Mar 28, 2022
1 parent 559d499 commit 5ad04a3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: actions/checkout@v2
with:
submodules: true
- name: Setup Python 3.9
- name: Setup Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install build requirements
run: python -m pip install -r .github/workflows/requirements.txt
- name: Build wheel
Expand All @@ -37,10 +37,10 @@ jobs:
uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install build requirements
run: python -m pip install -r .github/workflows/requirements.txt
- name: Build wheel distribution
Expand All @@ -57,8 +57,7 @@ jobs:
name: Upload
needs:
- sdist
- wheel-linux
- wheel-osx
- wheel
steps:
- name: Download built distributions
uses: actions/download-artifact@v2
Expand All @@ -72,5 +71,3 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: false


1 change: 1 addition & 0 deletions .github/workflows/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ coverage ~=5.0
codecov ~=2.0

# deployment dependencies
wheel
auditwheel
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/peptides.py/compare/14f254e...HEAD
[Unreleased]: https://github.com/althonos/peptides.py/compare/v0.1.0...HEAD


## [v0.1.0] - 2021-10-21
[v0.1.0]: https://github.com/althonos/peptides.py/compare/14f254e9...v0.1.0

Initial release.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifier =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics
Expand All @@ -36,6 +37,7 @@ project_urls =
Changelog = https://github.com/althonos/peptides.py/blob/master/CHANGELOG.md
Coverage = https://codecov.io/gh/althonos/peptides.py/
Builds = https://git.embl.de/larralde/peptides.py/-/pipelines
PyPI = https://pypi.org/project/peptides

[options]
zip_safe = true
Expand Down

0 comments on commit 5ad04a3

Please sign in to comment.