Skip to content

Commit 241ed22

Browse files
committed
Release 0.9.10
1 parent bc548f3 commit 241ed22

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ symclatron test
3737
### Option 2: Mamba or Conda
3838

3939
```sh
40-
mamba create -n symclatron-0.9.9 -c conda-forge -c bioconda -c https://repo.prefix.dev/astrogenomics symclatron
41-
mamba run -n symclatron-0.9.9 symclatron setup
42-
mamba run -n symclatron-0.9.9 symclatron test
40+
mamba create -n symclatron-0.9.10 -c conda-forge -c bioconda -c https://repo.prefix.dev/astrogenomics symclatron
41+
mamba run -n symclatron-0.9.10 symclatron setup
42+
mamba run -n symclatron-0.9.10 symclatron test
4343
# Outputs are written under `output_test_Symclatron_<DATETIME>/faa` and `output_test_Symclatron_<DATETIME>/fna`
4444
# (or under `--output-dir` if provided).
4545
```

recipe.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
context:
2-
version: 0.9.9
2+
version: 0.9.10
33

44
package:
55
name: symclatron
66
version: ${{ version }}
77

88
source:
99
- url: https://pypi.org/packages/source/s/symclatron/symclatron-${{ version }}.tar.gz
10-
sha256: b55eb8f7c2c0dfc03ff8ecf7fbb6edde333963abdd2eecfdc3217ad8a5473b21
10+
sha256: 8b0c0c6b8ae3104c61e285ae0d88595b33448b877e777aa8cc4a04960fc95ad6
1111

1212
build:
1313
script:

symclatron/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""
1818

1919
# Version information - required by flit for dynamic version
20-
__version__ = "0.9.9"
20+
__version__ = "0.9.10"
2121

2222
# Author information - required by flit
2323
__author__ = "Juan C. Villada"

symclatron/symclatron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
2025
5353
"""
5454

55-
__version__ = "0.9.9"
55+
__version__ = "0.9.10"
5656

5757
def _abs_path(path: Union[str, Path]) -> str:
5858
"""Return an absolute path without requiring it to exist."""

0 commit comments

Comments
 (0)