Skip to content

Commit

Permalink
Fix ghpages python version string (#1286)
Browse files Browse the repository at this point in the history
Similar issue as this:
actions/setup-python#401 (comment)

`3.10` gets interpreted as `3.1` when I want it to be `"3.10"`.
  • Loading branch information
achantavy committed Feb 22, 2024
1 parent 4827991 commit 6b134e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup

__version__ = '0.90.0rc1'
__version__ = '0.90.0rc2'


setup(
Expand Down

0 comments on commit 6b134e5

Please sign in to comment.