From 930f9374705d9004913e87aa027eb18b633d7937 Mon Sep 17 00:00:00 2001 From: Espen Hagen <2492641+espenhgn@users.noreply.github.com> Date: Sun, 22 Sep 2024 22:56:05 +0200 Subject: [PATCH] ReadTheDocs not building (#47) * ReadTheDocs not building Fixes #46 * rm python version * bump version * add build badge --- .readthedocs.yml | 7 +++---- README.md | 1 + version/version.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index bc7299e..a551cd0 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,10 +6,9 @@ sphinx: formats: all build: - image: latest + os: ubuntu-22.04 + tools: + python: "mambaforge-22.9" conda: environment: docs/source/environment.yml - -python: - version: "3.8" diff --git a/README.md b/README.md index 02a4c8f..e23d0d5 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ This is a template repository for Singularity/Dockerfile containers/images and b [![Documentation Status](https://readthedocs.org/projects/container-template/badge/?version=latest)](https://container-template.readthedocs.io/en/latest/?badge=latest) [![Flake8 lint](https://github.com/precimed/container_template/actions/workflows/python.yml/badge.svg)](https://github.com/precimed/container_template/actions/workflows/python.yml) [![Dockerfile lint](https://github.com/precimed/container_template/actions/workflows/docker.yml/badge.svg)](https://github.com/precimed/container_template/actions/workflows/docker.yml) +[![Container build](https://github.com/precimed/container_template/actions/workflows/container_build.yml/badge.svg)](https://github.com/precimed/container_template/actions/workflows/container_build.yml) [![Container build push](https://github.com/precimed/container_template/actions/workflows/container_build_push.yml/badge.svg)](https://github.com/precimed/container_template/actions/workflows/container_build_push.yml) [![Use this Template](https://img.shields.io/badge/Use%20this%20template-green.svg)](https://github.com/new?template_name=container_template&template_owner=precimed) diff --git a/version/version.py b/version/version.py index 7b3bbbc..4d2bcfb 100644 --- a/version/version.py +++ b/version/version.py @@ -5,7 +5,7 @@ _PATCH = "0" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. -_SUFFIX = "rc5" +_SUFFIX = "rc6" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX) \ No newline at end of file