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

Updating some dependencies #229

Merged
merged 5 commits into from
Jun 23, 2024
Merged
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
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx configuration file."""

# pylint: disable=invalid-name
import os
import time
Expand Down
1,690 changes: 639 additions & 1,051 deletions poetry.lock

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
repository = "https://github.com/Robpol86/robpol86.com"

[tool.poetry.dependencies]
python = "^3.8" # TODO ^3.10
python = "^3.9"
# Project dependencies.
babel = "2.11.0" # TODO: remove after validating changes
myst-parser = {version = "*", extras = ["linkify"]}
Expand All @@ -33,6 +33,11 @@ sphinx-imgur = "*"
sphinx-last-updated-by-git = "*"
sphinx-notfound-page = "*"
sphinx-sitemap = "2.3.0" # TODO: fix sphinx-sitemap: No pages generated for sitemap.xml
sphinxcontrib-applehelp = "1.0.4" # TODO: remove after validating changes
sphinxcontrib-devhelp = "1.0.2" # TODO: remove after validating changes
sphinxcontrib-htmlhelp = "2.0.1" # TODO: remove after validating changes
sphinxcontrib-qthelp = "1.0.3" # TODO: remove after validating changes
sphinxcontrib-serializinghtml = "1.1.5" # TODO: remove after validating changes
sphinxcontrib-youtube = "1.1.0" # TODO: 1.2.0 duplicates video thumbnails
sphinxext-opengraph = "*"

Expand Down
1 change: 1 addition & 0 deletions robpol86_com/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Robpol86.com."""

__author__ = "Robpol86"
__license__ = "BSD-2-Clause"
__version__ = __import__("pkg_resources").get_distribution(__name__).version
1 change: 1 addition & 0 deletions robpol86_com/html_context.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Modify HTML context."""

from typing import Dict, List

from sphinx.application import Sphinx
Expand Down
1 change: 1 addition & 0 deletions robpol86_com/move_static.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Move static files at the end of the build."""

from pathlib import Path
from typing import Optional

Expand Down
1 change: 1 addition & 0 deletions robpol86_com/tags.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Blog-style tagging."""

from typing import List

from docutils import nodes
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""pytest conftest."""

import pytest
from sphinx import __display_version__

Expand Down
1 change: 1 addition & 0 deletions tests/integration_tests/test_poetry.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests."""

import logging
import re
import subprocess
Expand Down
Loading