Skip to content

Commit

Permalink
Merge pull request #294 from mdekstrand/tweak/conda-py310
Browse files Browse the repository at this point in the history
Test Python 3.10 on Conda
  • Loading branch information
mdekstrand authored Jan 22, 2022
2 parents e69810b + e3d185c commit 8703e0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mkl-spec.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# environment mini-spec for ensuring MKL
dependencies:
- libblas=*=*mkl
- mkl=2020
- tbb
7 changes: 4 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@
BIBTEX_URL = 'https://paperpile.com/eb/YdOlWmnlit'
BIBTEX_FILE = Path('docs/lenskit.bib')


@task(iterable=['extras'])
def dev_lock(c, platform=None, extras=None, version=None, blas=None, env_file=False):
@task(iterable=['extras', 'mixins'])
def dev_lock(c, platform=None, extras=None, version=None, blas=None, mixins=None, env_file=False):
"Create a development lockfile"
plat = env.conda_platform()

Expand All @@ -39,6 +38,8 @@ def dev_lock(c, platform=None, extras=None, version=None, blas=None, env_file=Fa
cmd += f' -f lkbuild/python-{version}-spec.yml'
if blas:
cmd += f' -f lkbuild/{blas}-spec.yml'
for m in mixins:
cmd += f' -f {m}'
for e in extras:
cmd += f' -e {e}'

Expand Down

0 comments on commit 8703e0b

Please sign in to comment.