Skip to content

Commit 764509b

Browse files
committed
adapted template
1 parent 7ef03c2 commit 764509b

File tree

7 files changed

+260
-69
lines changed

7 files changed

+260
-69
lines changed

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
pages:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
environment:
1111
name: github-pages
1212
# url: ${{ steps.deployment.outputs.page_url }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ dmypy.json
129129
.pyre/
130130

131131
# Mac metadata files
132-
.DS_store
132+
.DS_store

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
# list see the documentation:
55
# https://www.sphinx-doc.org/en/master/usage/configuration.html
66

7-
# -- Path setup --------------------------------------------------------------
7+
from __future__ import annotations
88

9+
# -- Path setup --------------------------------------------------------------
910
# If extensions (or modules to document with autodoc) are in another directory,
1011
# add these directories to sys.path here. If the directory is relative to the
1112
# documentation root, use os.path.abspath to make it absolute, like shown here.

docs/devcontainer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GitHub Codespace
22

33
The project's Codespace configuration is located in ".devcontainer". It includes the "Dockerfile" for the development container.
4-
The project can be opened directly in a Codespace.
4+
The project can be opened directly in a Codespace.
55

66
## Running Unit Tests
77

docs/pre-commit-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pre-commit-config.yaml
22

33
Pre-commit is a Python package which can be used to create 'git' hooks which scan can prior to checkins.
4-
The included configuration focuses on python actions which will help to prevent users from commiting code which will fail during builds.
5-
In general, only formatting actions are automatiicaly performed. These include auto-formatting with 'black', or sorting dependacies with 'isort'.
4+
The included configuration focuses on python actions which will help to prevent users from committing code which will fail during builds.
5+
In general, only formatting actions are automatiicaly performed. These include auto-formatting with 'black', or sorting dependacies with 'isort'.
66
Linting actions are left to the discretion of the user.

0 commit comments

Comments
 (0)