Skip to content
Snippets Groups Projects
Commit 782145f7 authored by Martin Larralde's avatar Martin Larralde
Browse files

Release v0.1.0

parent e2c35832
No related branches found
No related tags found
No related merge requests found
name: Package name: Package
on: on:
- push push:
# push: tags:
# tags: - v*.*.*
# - v*.*.*
jobs: jobs:
...@@ -121,7 +120,6 @@ jobs: ...@@ -121,7 +120,6 @@ jobs:
- 3.7 - 3.7
- 3.8 - 3.8
- 3.9 - 3.9
- pypy-3.6
- pypy-3.7 - pypy-3.7
steps: steps:
- name: Setup Python ${{ matrix.python-version }} - name: Setup Python ${{ matrix.python-version }}
......
...@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ...@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased] ## [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. Initial release.
...@@ -52,7 +52,7 @@ pyFastANI can be installed directly from [PyPI](https://pypi.org/project/pyfasta ...@@ -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 which hosts some pre-built CPython wheels for x86-64 Unix platforms, as well
as the code required to compile from source with Cython: as the code required to compile from source with Cython:
```console ```console
$ pip install pyrodigal $ pip install pyfastani
``` ```
Note that in the event you compile from source, you will need to have the 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.* ...@@ -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 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 convert it to bytes first with the `bytes` builtin function. For older
versions of Biopython (earlier than 1.79), use `record.seq.encode()` versions of Biopython (earlier than 1.79), use `record.seq.encode()`
instead of `bytes(record.seq).` instead of `bytes(record.seq)`.
```python ```python
import pyfastani import pyfastani
......
...@@ -15,7 +15,7 @@ license = MIT ...@@ -15,7 +15,7 @@ license = MIT
platform = posix platform = posix
keywords = bioinformatics, genomics, average, nucleotide, identity keywords = bioinformatics, genomics, average, nucleotide, identity
classifier = classifier =
Development Status :: 3 - Alpha Development Status :: 4 - Beta
Intended Audience :: Developers Intended Audience :: Developers
Intended Audience :: Science/Research Intended Audience :: Science/Research
License :: OSI Approved :: MIT License License :: OSI Approved :: MIT License
...@@ -30,15 +30,12 @@ classifier = ...@@ -30,15 +30,12 @@ classifier =
Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Medical Science Apps. Topic :: Scientific/Engineering :: Medical Science Apps.
Typing :: Typed
project_urls = project_urls =
Documentation = https://pyfastani.readthedocs.io/en/stable/ Bug Tracker = https://github.com/althonos/pyfastani/issues
Bug Tracker = https://github.com/althonos/pyFastANI/issues Changelog = https://github.com/althonos/pyfastani/blob/master/CHANGELOG.md
Changelog = https://github.com/althonos/pyFastANI/blob/master/CHANGELOG.md Coverage = https://codecov.io/gh/althonos/pyfastani/
Coverage = https://codecov.io/gh/althonos/pyFastANI/ Builds = https://github.com/althonos/pyfastani/actions/
Builds = https://github.com/althonos/pyFastANI/actions/ PyPI = https://pypi.org/project/pyfastani
Zenodo = https://doi.org/10.5281/zenodo.4270012
PyPI = https://pypi.org/project/pyFastANI
[options] [options]
zip_safe = false zip_safe = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment