Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEP 639 compliance with license-file #12

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "sequence_align"
version = "0.1.0"
version = "0.1.1"
description = "Efficient implementations of Needleman-Wunsch and other sequence alignment algorithms in Rust with Python bindings."
readme = "README.md"
requires-python = ">=3.7"
Expand All @@ -15,9 +15,8 @@ maintainers = [
{name = "Kensho Technologies LLC.", email = "[email protected]"},
]
# Apache 2.0
license = {file = "LICENSE"}
license-file = "LICENSE"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down
4 changes: 2 additions & 2 deletions tests/perf/expected_perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ needleman_wunsch:
hirschberg:
runtime:
# Generally more sensitive to machine/environment
median: 0.50 # Seconds
tolerance: 0.50 # +/- 50% (0.25 - 0.75s)
median: 0.375 # Seconds
tolerance: 0.50 # +/- 50% (0.1875 - 0.5625s)
memory:
# More consistent, but low enough to have major percent-wise variation
median: 32.0 # MiB
Expand Down
Loading