Skip to content

Commit

Permalink
Limit template snakemake version to <8
Browse files Browse the repository at this point in the history
  • Loading branch information
pvandyken committed Jan 11, 2024
1 parent 6003f09 commit 94778c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [

requires-python = "{{ python_version }}"
dependencies = [
"snakemake >= {{ snakemake_version }}",
"snakemake >= {{ snakemake_version }},<8",
"snakebids >= {{ snakebids_version }}",
{# Explicitly specify numpy version for py38 until snakebids 0.10.x to
work around specification bug causing numpys too high for py38 to be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [

[tool.poetry.dependencies]
python = "{{ python_version }}"
snakemake = ">={{ snakemake_version }}"
snakemake = ">={{ snakemake_version }},<8"
snakebids = ">={{ snakebids_version }}"

[tool.poetry.scripts]
Expand Down

0 comments on commit 94778c1

Please sign in to comment.