Skip to content

Commit e363872

Browse files
committed
Release v0.6.1
1 parent 6fa0571 commit e363872

4 files changed

Lines changed: 20 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.6.0...HEAD
9+
[Unreleased]: https://github.com/althonos/pyfastani/compare/v0.6.1...HEAD
10+
11+
12+
## [v0.6.1] - 2024-01-12
13+
[v0.6.1]: https://github.com/althonos/pyfastani/compare/v0.6.0...v0.6.1
14+
15+
### Fixed
16+
- Deployment to AUR from GitHub Actions.
17+
- Incorrect compile actions in CMake files causing compilation failures with older CMake versions.
18+
19+
### Changed
20+
- Reduce source distribution size by excluding unneeded vendored files.
1021

1122

1223
## [v0.6.0] - 2024-10-22

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2024 Martin Larralde <martin.larralde@embl.de>
3+
Copyright (c) 2021-2025 Martin Larralde <martin.larralde@embl.de>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/_static/json/switcher.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[
22
{
33
"name": "v0.6 (latest)",
4-
"version": "0.6.0",
5-
"url": "https://pytantan.readthedocs.io/en/v0.6.0/"
4+
"version": "0.6.1",
5+
"url": "https://pytantan.readthedocs.io/en/v0.6.1/"
66
},
77
{
88
"name": "v0.5",

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pyfastani"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description = "Cython bindings and Python interface to FastANI, a method for fast whole-genome similarity estimation."
99
readme = "README.md"
1010
requires-python = ">=3.7"
@@ -41,19 +41,22 @@ classifiers = [
4141
"Coverage" = "https://codecov.io/gh/althonos/pyfastani/"
4242
"Builds" = "https://github.com/althonos/pyfastani/actions"
4343
"PyPI" = "https://pypi.org/project/pyfastani"
44+
"PiWheels" = "https://www.piwheels.org/project/pyfastani/"
4445

4546
[tool.scikit-build]
4647
build-dir = "build/{build_type}"
4748
editable.rebuild = true
4849
editable.verbose = false
4950
sdist.exclude = [
5051
".github",
51-
"data",
52+
"benches/data",
5253
"vendor/boost-math/test",
5354
"vendor/boost-math/doc",
5455
"vendor/boost-math/reporting",
5556
"vendor/boost-math/example",
5657
"vendor/FastANI/data",
58+
"src/pyfastani/tests/data/Shigella_flexneri_2a_01.fna",
59+
"src/pyfastani/tests/data/Escherichia_coli_str_K12_MG1655.fna",
5760
]
5861

5962
[[tool.scikit-build.generate]]

0 commit comments

Comments
 (0)