Skip to content

Commit

Permalink
Merge branch 'latest' into add-tax-ani
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Jul 24, 2022
2 parents 6ee6446 + 1bc273d commit 984c5e6
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 31 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ updates:
allow:
- dependency-type: "direct"
open-pull-requests-limit: 10
rebase-strategy: "disabled"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
4 changes: 4 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ conda:
environment: doc/environment.yml

python:
# NOTE: doc/environment.yml specifies python=3.10, which is needed
# b/c of a pip problem; see
# https://github.com/sourmash-bio/sourmash/issues/2139
# this 'version' setting is effectively ignored, AFAICT. -- CTB 7/24/22
version: 3.8
install:
- method: pip
Expand Down
42 changes: 24 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion doc/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ channels:
- defaults
dependencies:
- rust
- python =3.8
- python=3.10
- pip
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
sourmash = mach-nix-wrapper.buildPythonPackage {
src = ./.;
pname = "sourmash";
version = "4.4.0";
version = "4.4.2";
requirements = ''
screed>=1.0.5
cffi>=1.14.0
Expand All @@ -80,11 +80,12 @@
bitstring<4,>=3.1.9
'';
requirementsExtra = ''
setuptools
setuptools >= 61
milksnake
setuptools_scm[toml] >= 4, <6
wheel >= 0.29.0
'';
SETUPTOOLS_SCM_PRETEND_VERSION = "4.4.0";
SETUPTOOLS_SCM_PRETEND_VERSION = "4.4.2";
DYLD_LIBRARY_PATH = "${self.packages.${system}.lib}/lib";
NO_BUILD = "1";
};
Expand Down

0 comments on commit 984c5e6

Please sign in to comment.