From 17d7167f478af8a7d6e2d8e55f1f3c23973576f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 May 2022 03:23:39 +0000 Subject: [PATCH 1/6] Bump crazy-max/ghaction-github-pages from 2.5.0 to 3.0.0 Bumps [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages) from 2.5.0 to 3.0.0. - [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases) - [Changelog](https://github.com/crazy-max/ghaction-github-pages/blob/dev/CHANGELOG.md) - [Commits](https://github.com/crazy-max/ghaction-github-pages/compare/v2.5.0...v3.0.0) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/demo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 2eeb23a..313f767 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -28,7 +28,7 @@ jobs: pages_threshold: major_outage - name: Deploy to GitHub Pages if: success() - uses: crazy-max/ghaction-github-pages@v2.5.0 + uses: crazy-max/ghaction-github-pages@v3.0.0 with: target_branch: demo build_dir: ./docs/build/html From 5f1512ff7e24cd504e463132e9dcf70257e7002a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 May 2022 03:23:42 +0000 Subject: [PATCH 2/6] Bump crazy-max/ghaction-github-status from 2.2.0 to 3.0.0 Bumps [crazy-max/ghaction-github-status](https://github.com/crazy-max/ghaction-github-status) from 2.2.0 to 3.0.0. - [Release notes](https://github.com/crazy-max/ghaction-github-status/releases) - [Changelog](https://github.com/crazy-max/ghaction-github-status/blob/master/CHANGELOG.md) - [Commits](https://github.com/crazy-max/ghaction-github-status/compare/v2.2.0...v3.0.0) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-status dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/demo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 2eeb23a..53f177c 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -23,7 +23,7 @@ jobs: cd ./docs/ make html - name: Check GitHub Pages status - uses: crazy-max/ghaction-github-status@v2.2.0 + uses: crazy-max/ghaction-github-status@v3.0.0 with: pages_threshold: major_outage - name: Deploy to GitHub Pages From ec1bad081214d697a8d9308d99e796d22f84e010 Mon Sep 17 00:00:00 2001 From: Local State Date: Wed, 13 Jul 2022 16:18:08 -0700 Subject: [PATCH 3/6] Update demo.yml --- .github/workflows/demo.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 2eeb23a..fcb8320 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -8,11 +8,13 @@ on: jobs: demo: runs-on: ubuntu-latest - container: - image: python:3.9 steps: - name: Checkout uses: actions/checkout@v2 + - name: Setup python + uses: actions/setup-python@v4 + with: + python-version: '3.x' - name: Install Dependencies run: | pip install --upgrade pip From 1ad469e00f39b74f2e5a5db49e6f94d7f78030cd Mon Sep 17 00:00:00 2001 From: Local State Date: Wed, 13 Jul 2022 16:18:38 -0700 Subject: [PATCH 4/6] Update release.yml --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index efa4d8f..670334b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,10 +10,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: - python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax - architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified + python-version: '3.x' - name: Build run: | pip install --upgrade --no-cache-dir setuptools build From f56e7fe467a6fd65d6a13d6d82e4d723f90229b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Jul 2022 23:18:47 +0000 Subject: [PATCH 5/6] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/demo.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index fcb8320..21cdadd 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup python uses: actions/setup-python@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 670334b..42f04cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.x' From 1a5f947fdef16906e8c06465c8ebbbeb584dfabf Mon Sep 17 00:00:00 2001 From: Local State Date: Wed, 13 Jul 2022 16:22:53 -0700 Subject: [PATCH 6/6] Update conf.py --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 4b5fb24..69673c5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -78,7 +78,7 @@ def linkcode_resolve(domain, info): # -- General default configuration ------------------------------------------------ -needs_sphinx = '4.0.2' +needs_sphinx = '4.2.0' templates_path = ['_templates'] source_suffix = '.rst' # ['.rst', '.md'] root_doc = 'index'