From 782145f77e0807abee3bc9dbf8c0b24dfce862a6 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Sun, 13 Jun 2021 22:54:49 +0200 Subject: [PATCH] Release v0.1.0 --- .github/workflows/package.yml | 8 +++----- CHANGELOG.md | 6 +++++- README.md | 4 ++-- setup.cfg | 15 ++++++--------- 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index a7d1af5..87b97fb 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -1,10 +1,9 @@ name: Package on: - - push - # push: - # tags: - # - v*.*.* + push: + tags: + - v*.*.* jobs: @@ -121,7 +120,6 @@ jobs: - 3.7 - 3.8 - 3.9 - - pypy-3.6 - pypy-3.7 steps: - name: Setup Python ${{ matrix.python-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index fbede0e..9158952 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/pyrodigal/compare/4bd3017...HEAD +[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.0...HEAD + + +## [v0.1.0] - 2021-06-13 +[v0.1.0]: https://github.com/althonos/pyrodigal/compare/4bd3017...v0.1.0 Initial release. diff --git a/README.md b/README.md index 3360a76..f0dbd34 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ pyFastANI can be installed directly from [PyPI](https://pypi.org/project/pyfasta which hosts some pre-built CPython wheels for x86-64 Unix platforms, as well as the code required to compile from source with Cython: ```console -$ pip install pyrodigal +$ pip install pyfastani ``` Note that in the event you compile from source, you will need to have the @@ -72,7 +72,7 @@ affect the `name` attribute of the hits returned for a query.* Biopython does not let us access to the sequence directly, so we need to convert it to bytes first with the `bytes` builtin function. For older versions of Biopython (earlier than 1.79), use `record.seq.encode()` -instead of `bytes(record.seq).` +instead of `bytes(record.seq)`. ```python import pyfastani diff --git a/setup.cfg b/setup.cfg index d670f73..0cda600 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ license = MIT platform = posix keywords = bioinformatics, genomics, average, nucleotide, identity classifier = - Development Status :: 3 - Alpha + Development Status :: 4 - Beta Intended Audience :: Developers Intended Audience :: Science/Research License :: OSI Approved :: MIT License @@ -30,15 +30,12 @@ classifier = Programming Language :: Python :: Implementation :: PyPy Topic :: Scientific/Engineering :: Bio-Informatics Topic :: Scientific/Engineering :: Medical Science Apps. - Typing :: Typed project_urls = - Documentation = https://pyfastani.readthedocs.io/en/stable/ - Bug Tracker = https://github.com/althonos/pyFastANI/issues - Changelog = https://github.com/althonos/pyFastANI/blob/master/CHANGELOG.md - Coverage = https://codecov.io/gh/althonos/pyFastANI/ - Builds = https://github.com/althonos/pyFastANI/actions/ - Zenodo = https://doi.org/10.5281/zenodo.4270012 - PyPI = https://pypi.org/project/pyFastANI + Bug Tracker = https://github.com/althonos/pyfastani/issues + Changelog = https://github.com/althonos/pyfastani/blob/master/CHANGELOG.md + Coverage = https://codecov.io/gh/althonos/pyfastani/ + Builds = https://github.com/althonos/pyfastani/actions/ + PyPI = https://pypi.org/project/pyfastani [options] zip_safe = false