From 5ad04a38bf6c96dad232108f93e11ef290313cc5 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Thu, 21 Oct 2021 16:23:59 +0200 Subject: [PATCH] Release v0.1.0 --- .github/workflows/package.yml | 13 +++++-------- .github/workflows/requirements.txt | 1 + CHANGELOG.md | 6 +++++- setup.cfg | 2 ++ 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index fa322070..5b7dd45d 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -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 @@ -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 @@ -57,8 +57,7 @@ jobs: name: Upload needs: - sdist - - wheel-linux - - wheel-osx + - wheel steps: - name: Download built distributions uses: actions/download-artifact@v2 @@ -72,5 +71,3 @@ jobs: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} skip_existing: false - - diff --git a/.github/workflows/requirements.txt b/.github/workflows/requirements.txt index 41ff0101..c7176053 100644 --- a/.github/workflows/requirements.txt +++ b/.github/workflows/requirements.txt @@ -7,4 +7,5 @@ coverage ~=5.0 codecov ~=2.0 # deployment dependencies +wheel auditwheel diff --git a/CHANGELOG.md b/CHANGELOG.md index b81839b4..c61a2cab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/setup.cfg b/setup.cfg index 8197a8a0..327b5113 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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