Skip to content

Commit

Permalink
Release v0.8.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed May 14, 2024
1 parent 5a6c6b4 commit 21d66c9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ jobs:
environment: Arch Linux User Repository
runs-on: ubuntu-latest
name: Update AUR package
if: "!contains(github.ref, 'rc') && !contains(github.ref, 'alpha')"
needs:
- sdist
- upload
Expand Down
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pytrimal/compare/v0.6.0...HEAD
[Unreleased]: https://github.com/althonos/pytrimal/compare/v0.8.0-alpha1...HEAD


## [v0.8.0-alpha1] - 2024-05-14
[v0.8.0-alpha1]: https://github.com/althonos/pytrimal/compare/v0.7.0...v0.8.0-alpha1

### Changed
- Update vendored trimAl to `d89ffc3` (`2.0_RC`).
- Use `scoring-matrices` package to get a base for the `SimilarityMatrix` class.
- Rename `backend` to `platform` for all trimmer classes.
- Use trimAl platform-specific code to accelerate computations.

### Fixed
- Missing trimmer classes in API documentation.

### Removed
- Outdated platform-specific code.
- `archspec` dependency (replaced by `cpu_features` used internally in trimAl).


## [v0.7.0] - 2023-07-21
Expand Down
2 changes: 1 addition & 1 deletion pytrimal/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.0"
__version__ = "0.8.0-alpha1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def _check_simd_generic(self, name, flags, program):
except CompileError:
_eprint("no")
return False
except subprocess.CalledProcessError:
except (subprocess.CalledProcessError, OSError):
_eprint("yes, but cannot run code")
return True # assume we are cross-compiling, and still build
else:
Expand Down

0 comments on commit 21d66c9

Please sign in to comment.