Compare commits

..

12 Commits

8 changed files with 49 additions and 25 deletions

View File

@@ -74,13 +74,19 @@ jobs:
run: |
uv --version
uv run python --version
docker --version
docker ps
- name: Install dependencies
run: |
uv sync --group tests
- name: Run tests
env:
PYTEST_ADDOPTS: "--cov-report=lcov"
run: |
uv run test
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov

View File

@@ -9,14 +9,12 @@ build:
os: ubuntu-24.04
tools:
python: "3.13"
# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/conf.py
# declare the Python requirements required to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: docs/requirements.txt
jobs:
pre_create_environment:
- asdf plugin add uv
- asdf install uv latest
- asdf global uv latest
create_environment:
- uv sync --group docs
install:
- uv run python -m sphinx -T -d docs/_build/doctrees -D language=en docs $READTHEDOCS_OUTPUT/html

View File

@@ -15,20 +15,20 @@
.. image:: https://img.shields.io/pypi/dm/invenio-theme-iform.svg
:target: https://pypi.python.org/pypi/invenio-theme-iform
.. image:: https://img.shields.io/github/tag/tu-graz-library/invenio-theme-iform.svg
.. image:: https://img.shields.io/github/tag/Cian-H/invenio-theme-iform.svg
:target: https://github.com/Cian-H/invenio-theme-iform/releases
.. image:: https://img.shields.io/github/license/tu-graz-library/invenio-theme-iform.svg
.. image:: https://img.shields.io/github/license/Cian-H/invenio-theme-iform.svg
:target: https://github.com/Cian-H/invenio-theme-iform/blob/master/LICENSE
.. image:: https://readthedocs.org/projects/invenio-theme-iform/badge/?version=latest
:target: https://invenio-theme-iform.readthedocs.io/en/latest/?badge=latest
.. image:: https://img.shields.io/coveralls/mb-wali/invenio-theme-iform.svg
:target: https://coveralls.io/r/mb-wali/invenio-theme-iform
.. image:: https://coveralls.io/repos/github/Cian-H/invenio-theme-iform/badge.svg?branch=master
:target: https://coveralls.io/github/Cian-H/invenio-theme-iform?branch=master
.. image:: https://img.shields.io/badge/code%20style-Ruff-D7FF64.svg
:target: https://github.com/astral-sh/ruff
:target: https://github.com/astral-sh/ruff
I-Form standard theme.

View File

@@ -45,8 +45,8 @@ master_doc = "index"
# General information about the project.
project = "invenio-theme-iform"
copyright = "2020, Graz University of Technology"
author = "Graz University of Technology"
copyright = "2025, I-Form"
author = "I-Form"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -109,8 +109,8 @@ html_theme_options = {
"description": "invenio module for I-Form theme.",
"github_user": "Cian-H",
"github_repo": "invenio-theme-iform",
"github_button": False,
"github_banner": True,
"github_button": True,
"github_banner": False,
"show_powered_by": False,
"extra_nav_links": {
"invenio-theme-iform@GitHub": "https://github.com/Cian-H/invenio-theme-iform",
@@ -242,7 +242,7 @@ latex_documents = [
master_doc,
"invenio-theme-iform.tex",
"invenio-theme-iform Documentation",
"Graz University of Technology",
"I-Form",
"manual",
),
]

View File

@@ -1 +0,0 @@
-e .[docs,tests]

View File

@@ -8,4 +8,4 @@
"""Metadata for this python module."""
__version__ = "2025.5.20.2"
__version__ = "2025.5.20.7"

View File

@@ -73,6 +73,13 @@ tests = [
"pytest-ruff>=0.4.1",
"Sphinx>=4.5.0",
]
docs = [
"invenio-app>=1.3.4",
"invenio-previewer>=3.0.0",
"invenio-rdm-records>=18.0.0",
"invenio-search[opensearch2]>=2.1.0",
"Sphinx>=4.5.0",
]
[build-system]
requires = ["hatchling", "hatch-calver"]

14
uv.lock generated
View File

@@ -2367,6 +2367,13 @@ dev = [
{ name = "pydocstyle" },
{ name = "ruff" },
]
docs = [
{ name = "invenio-app" },
{ name = "invenio-previewer" },
{ name = "invenio-rdm-records" },
{ name = "invenio-search", extra = ["opensearch2"] },
{ name = "sphinx" },
]
tests = [
{ name = "invenio-app" },
{ name = "invenio-previewer" },
@@ -2393,6 +2400,13 @@ dev = [
{ name = "pydocstyle", specifier = ">=6.3.0" },
{ name = "ruff", specifier = ">=0.11.7" },
]
docs = [
{ name = "invenio-app", specifier = ">=1.3.4" },
{ name = "invenio-previewer", specifier = ">=3.0.0" },
{ name = "invenio-rdm-records", specifier = ">=18.0.0" },
{ name = "invenio-search", extras = ["opensearch2"], specifier = ">=2.1.0" },
{ name = "sphinx", specifier = ">=4.5.0" },
]
tests = [
{ name = "invenio-app", specifier = ">=1.3.4" },
{ name = "invenio-previewer", specifier = ">=3.0.0" },