Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use py310 to run notebooks #60

Merged
merged 1 commit into from
Jun 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 1 addition & 32 deletions .github/workflows/run_notebooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ jobs:
notebooks:
name: Running Docs Notebooks
runs-on: ubuntu-latest
# defaults:
# run:
# # Adding -l {0} ensures conda can be found properly in each step
# shell: bash -l {0}
steps:
- uses: actions/checkout@main
with:
Expand All @@ -27,34 +23,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

# - name: Cache conda
# uses: actions/cache@v2
# env:
# # Increase this value to reset cache if ci/test-env.yml has not changed
# CACHE_NUMBER: 0
# with:
# path: ~/conda_pkgs_dir
# key:
# ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ matrix.python-version }}-${{ hashFiles('ci/test-env.yml', 'setup.cfg') }}

# - name: Setup Miniconda
# uses: conda-incubator/setup-miniconda@v2.1.1
# with:
# # auto-update-conda: true
# miniconda-version: "latest"
# python-version: '3.10'
# environment-file: ci/notebook-env.yml
# activate-environment: viscpu
# channels: conda-forge,defaults
# channel-priority: strict
# use-only-tar-bz2: true

# - name: Conda Info
# run: |
# conda info -a
# conda list
python-version: "3.10"

- name: Install
run: |
Expand Down
Loading