From 6b134e5857cdc454c32c52e105deaa70cb419000 Mon Sep 17 00:00:00 2001 From: Alex Chantavy Date: Thu, 22 Feb 2024 15:14:46 -0800 Subject: [PATCH] Fix ghpages python version string (#1286) Similar issue as this: https://github.com/actions/setup-python/issues/401#issuecomment-1848265537 `3.10` gets interpreted as `3.1` when I want it to be `"3.10"`. --- .github/workflows/sphinx.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sphinx.yml b/.github/workflows/sphinx.yml index 57075f9ae..ac9915b93 100644 --- a/.github/workflows/sphinx.yml +++ b/.github/workflows/sphinx.yml @@ -24,7 +24,7 @@ jobs: - name: Install Python uses: actions/setup-python@v2 with: - python-version: 3.10 + python-version: "3.10" # https://docs.github.com/en/actions/guides/building-and-testing-python#caching-dependencies # ^-- How to set up caching for pip on Ubuntu - name: Cache pip diff --git a/setup.py b/setup.py index 53e57bfaf..d93cdc298 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages from setuptools import setup -__version__ = '0.90.0rc1' +__version__ = '0.90.0rc2' setup(