Skip to content
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

Merge sphinx update #1239

Closed
wants to merge 3 commits into from
Closed
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
22 changes: 22 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# .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.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: doc/source/conf.py

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: doc/requirements.txt
8 changes: 4 additions & 4 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Sphinx==3.0.3
sphinx-autoapi===1.3.0
sphinx_rtd_theme==0.4.3
Sphinx==7.2.6
sphinx-autoapi===3.0.0
sphinx_rtd_theme==1.3.0
sphinxcontrib-napoleon==0.7
sphinx-copybutton==0.3.3
sphinx-copybutton==0.5.2
6 changes: 3 additions & 3 deletions heat/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

major: int = 1
"""Indicates Heat's main version."""
minor: int = 2
minor: int = 3
"""Indicates feature extension."""
micro: int = 2
micro: int = 0
"""Indicates revisions for bugfixes."""
extension: str = "dev"
extension: str = None
"""Indicates special builds, e.g. for specific hardware."""

if not extension:
Expand Down
Loading