Skip to content

Commit

Permalink
Updating some dependencies (#229)
Browse files Browse the repository at this point in the history
* py3.9 and relock

* pin deps of deps

* fix lint

* fix lint again

* more
  • Loading branch information
Robpol86 authored Jun 23, 2024
1 parent 6a0cced commit 6a3fbe9
Show file tree
Hide file tree
Showing 9 changed files with 652 additions and 1,052 deletions.
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

0 comments on commit 6a3fbe9

Please sign in to comment.