From fbcfbd9a4b386cb5250ea337376b0960a2f9bd7f Mon Sep 17 00:00:00 2001 From: ASintsova Date: Thu, 11 Apr 2024 14:21:11 +0200 Subject: [PATCH] Update ci-with-conda.yml --- .github/workflows/ci-with-conda.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-with-conda.yml b/.github/workflows/ci-with-conda.yml index 3398ce8..d95e9ca 100644 --- a/.github/workflows/ci-with-conda.yml +++ b/.github/workflows/ci-with-conda.yml @@ -14,17 +14,17 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10 - uses: actions/setup-python@v3 - with: - python-version: '3.10' + # - name: Set up Python 3.10 + # uses: actions/setup-python@v3 + # with: + # python-version: '3.10' - name: Add conda to system path run: | # $CONDA is an environment variable pointing to the root of the miniconda directory echo $CONDA/bin >> $GITHUB_PATH - name: Install dependencies run: | - conda install -c conda-forge mamba + conda install -c conda-forge mamba python==3.10 mamba env update --file mbarq_environment.yaml --name base pip install . - name: Lint with flake8