Skip to content

increase miniconda python version #1119

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

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ jobs:
- name: Install Miniconda
# conda can fail at downgrading python, so we specify python version in advance
env:
RETICULATE_MINICONDA_PYTHON_VERSION: "3.7"
RETICULATE_MINICONDA_PYTHON_VERSION: "3.8"
run: reticulate::install_miniconda() # creates r-reticulate conda env by default
shell: Rscript {0}

- name: Install TensorFlow
run: |
tensorflow::install_tensorflow(version='2.7', conda_python_version = NULL)
tensorflow::install_tensorflow(version='2.13', conda_python_version = NULL)
shell: Rscript {0}

- uses: r-lib/actions/check-r-package@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
- name: Install Miniconda
# conda can fail at downgrading python, so we specify python version in advance
env:
RETICULATE_MINICONDA_PYTHON_VERSION: "3.7"
RETICULATE_MINICONDA_PYTHON_VERSION: "3.8"
run: reticulate::install_miniconda() # creates r-reticulate conda env by default
shell: Rscript {0}

- name: Install TensorFlow
run: |
tensorflow::install_tensorflow(version='2.7', conda_python_version = NULL)
tensorflow::install_tensorflow(version='2.13', conda_python_version = NULL)
shell: Rscript {0}

- name: Build site
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- name: Install Miniconda
# conda can fail at downgrading python, so we specify python version in advance
env:
RETICULATE_MINICONDA_PYTHON_VERSION: "3.7"
RETICULATE_MINICONDA_PYTHON_VERSION: "3.8"
run: reticulate::install_miniconda() # creates r-reticulate conda env by default
shell: Rscript {0}

- name: Install TensorFlow
run: |
tensorflow::install_tensorflow(version='2.7', conda_python_version = NULL)
tensorflow::install_tensorflow(version='2.13', conda_python_version = NULL)
shell: Rscript {0}

- name: Test coverage
Expand Down
Loading