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 Jun 13, 2021
1 parent e2c3583 commit 782145f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 17 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Package

on:
- push
# push:
# tags:
# - v*.*.*
push:
tags:
- v*.*.*

jobs:

Expand Down Expand Up @@ -121,7 +120,6 @@ jobs:
- 3.7
- 3.8
- 3.9
- pypy-3.6
- pypy-3.7
steps:
- name: Setup Python ${{ matrix.python-version }}
Expand Down
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/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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
15 changes: 6 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 782145f

Please sign in to comment.