Skip to content

Commit 6499752

Browse files
switch theme to furo from alabaster
1 parent e8fe5fa commit 6499752

File tree

6 files changed

+9
-30
lines changed

6 files changed

+9
-30
lines changed

.readthedocs.yaml

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,13 @@
1-
# Read the Docs configuration file for Sphinx projects
2-
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3-
4-
# Required
51
version: 2
62

7-
# Set the OS, Python version and other tools you might need
83
build:
94
os: ubuntu-22.04
105
tools:
116
python: "3.12"
12-
# You can also specify other tool versions:
13-
# nodejs: "20"
14-
# rust: "1.70"
15-
# golang: "1.20"
167

17-
# Build documentation in the "docs/" directory with Sphinx
188
sphinx:
199
configuration: docs/conf.py
20-
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
21-
# builder: "dirhtml"
22-
# Fail on all warnings to avoid broken references
23-
# fail_on_warning: true
24-
25-
# Optionally build your docs in additional formats such as PDF and ePub
26-
# formats:
27-
# - pdf
28-
# - epub
2910

30-
# Optional but recommended, declare the Python requirements required
31-
# to build your documentation
32-
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
33-
# python:
34-
# install:
35-
# - requirements: docs/requirements.txt
11+
python:
12+
install:
13+
- requirements: docs/requirements.txt

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ that I would feel comfortable using.
9191

9292
.. _ospackage: https://docs.python.org/3/library/os.html#file-names-command-line-arguments-and-environment-variables
9393
.. _surrogateescape: https://docs.python.org/3/library/codecs.html#surrogateescape
94-
.. _GitHub: https://github.com/absperf/asyncinotify
94+
.. _GitHub: https://github.com/ProCern/asyncinotify
9595
.. _pathlib: https://docs.python.org/3/library/pathlib.html
9696
.. _ReadTheDocs: https://asyncinotify.readthedocs.io/en/latest/
9797
.. _PyPi: https://pypi.org/project/asyncinotify/

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
project = pyproject['project']['name']
3030
author = pyproject['project']['authors'][0]['name']
31-
copyright = '2019-2023, ' + author
31+
copyright = '2019-2024 ProCern'
3232

3333
# The full version, including alpha/beta/rc tags
3434
release = pyproject['project']['version']
@@ -59,7 +59,7 @@
5959
# The theme to use for HTML and HTML Help pages. See the documentation for
6060
# a list of builtin themes.
6161
#
62-
html_theme = 'alabaster'
62+
html_theme = 'furo'
6363

6464
# Add any paths that contain custom static files (such as style sheets) here,
6565
# relative to this directory. They are copied after the builtin static files,

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Indices and tables
3535

3636
.. _ospackage: https://docs.python.org/3/library/os.html#file-names-command-line-arguments-and-environment-variables
3737
.. _errorhandler: https://docs.python.org/3/library/codecs.html#error-handlers
38-
.. _GitHub: https://github.com/absperf/asyncinotify
38+
.. _GitHub: https://github.com/ProCern/asyncinotify
3939
.. _pathlib: https://docs.python.org/3/library/pathlib.html
4040
.. _ReadTheDocs: https://asyncinotify.readthedocs.io/en/latest/
4141
.. _PyPi: https://pypi.org/project/asyncinotify/

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
sphinx
22
tomli; python_version < "3.11.0"
3+
furo == 2024.04.27

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = 'asyncinotify'
33
description = 'A simple optionally-async python inotify library, focused on simplicity of use and operation, and leveraging modern Python features'
4-
version = '4.0.8'
4+
version = '4.0.9'
55
readme = 'README.rst'
66
requires-python = '>= 3.6, < 4'
77
license = {text = 'MPL-2.0'}

0 commit comments

Comments
 (0)