-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'latest' into better-summarized-lingroups
- Loading branch information
Showing
22 changed files
with
449 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
python-version: '3.10' | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected].1 | ||
uses: pypa/[email protected].3 | ||
env: | ||
CIBW_ENVIRONMENT_MACOS: ${{ matrix.macos_target }} | ||
CIBW_ARCHS_LINUX: ${{ matrix.arch }} | ||
|
@@ -63,7 +63,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected].1 | ||
uses: pypa/[email protected].3 | ||
env: | ||
CIBW_PLATFORM: pyodide | ||
CIBW_BUILD: 'cp312-pyodide_wasm32' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sourmash" | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = ["Luiz Irber <[email protected]>", "N. Tessa Pierce-Ward <[email protected]>"] | ||
description = "tools for comparing biological sequences with k-mer sketches" | ||
repository = "https://github.com/sourmash-bio/sourmash" | ||
|
@@ -56,7 +56,7 @@ rkyv = { version = "0.7.44", optional = true } | |
roaring = "0.10.6" | ||
roots = "0.0.8" | ||
serde = { version = "1.0.210", features = ["derive"] } | ||
serde_json = "1.0.128" | ||
serde_json = "1.0.132" | ||
statrs = "0.17.1" | ||
streaming-stats = "0.2.3" | ||
thiserror = "1.0" | ||
|
@@ -68,7 +68,7 @@ vec-collections = "0.4.3" | |
codspeed-criterion-compat = "2.7.2" | ||
proptest = { version = "1.5.0", default-features = false, features = ["std"]} | ||
rand = "0.8.2" | ||
tempfile = "3.12.0" | ||
tempfile = "3.13.0" | ||
|
||
[[bench]] | ||
name = "compute" | ||
|
@@ -97,7 +97,7 @@ skip_feature_sets = [ | |
|
||
[target.'cfg(all(target_arch = "wasm32", target_os="unknown"))'.dependencies] | ||
js-sys = "0.3.68" | ||
web-sys = { version = "0.3.70", features = ["console", "File", "FileReaderSync"] } | ||
web-sys = { version = "0.3.72", features = ["console", "File", "FileReaderSync"] } | ||
wasm-bindgen = "0.2.89" | ||
getrandom = { version = "0.2", features = ["js"] } | ||
|
||
|
Oops, something went wrong.