diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 8b03737..6447869 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -33,13 +33,13 @@ jobs: with: fetch-depth: 0 - - uses: mamba-org/provision-with-micromamba@main + - name: setup_miniconda + uses: conda-incubator/setup-miniconda@v2 with: - environment-file: devtools/conda-envs/test_env.yaml - environment-name: test - channels: conda-forge,defaults - extra-specs: | - python=3.9 + python-version: 3.9 + auto-update-conda: true + add-pip-as-python-dependency: true + architecture: x64 - name: install_deps run: | diff --git a/readthedocs.yml b/readthedocs.yml index a88414e..0c9b025 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -1,26 +1,17 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required +--- version: 2 -# Set the version of Python and other tools you might need -build: - os: ubuntu-22.04 - tools: - python: "3.12" - -# Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py -# We recommend specifying your dependencies to enable reproducible builds: -# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +formats: + - pdf + python: + version: 3.7 install: - - requirements: requirements-dev.txt - - method: pip - path: . + - method: pip + path: . + conda: - environment: docs/requirements.yaml \ No newline at end of file + environment: environment.yml \ No newline at end of file