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

chore: update packages #2034

Merged
merged 2 commits into from
Oct 21, 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
2 changes: 1 addition & 1 deletion .github/workflows/lint-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
cache: pip

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

name: Python ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
cache: pip

- name: Install dependencies
Expand Down
7 changes: 4 additions & 3 deletions docs/readthedocs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ alabaster==1.0.0 ; python_version >= "3.10" and python_version < "4.0"
babel==2.16.0 ; python_version >= "3.8" and python_version < "4.0"
beautifulsoup4==4.12.3 ; python_version >= "3.8" and python_version < "4.0"
certifi==2024.8.30 ; python_version >= "3.8" and python_version < "4.0"
charset-normalizer==3.3.2 ; python_version >= "3.8" and python_version < "4.0"
charset-normalizer==3.4.0 ; python_version >= "3.8" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0"
docutils==0.20.1 ; python_version >= "3.8" and python_version < "3.9"
docutils==0.21.2 ; python_version >= "3.9" and python_version < "4.0"
Expand All @@ -13,7 +13,8 @@ imagesize==1.4.1 ; python_version >= "3.8" and python_version < "4.0"
importlib-metadata==8.5.0 ; python_version >= "3.8" and python_version < "3.10"
jinja2==3.1.4 ; python_version >= "3.8" and python_version < "4.0"
livereload==2.7.0 ; python_version >= "3.8" and python_version < "4.0"
markupsafe==2.1.5 ; python_version >= "3.8" and python_version < "4.0"
markupsafe==2.1.5 ; python_version >= "3.8" and python_version < "3.9"
markupsafe==3.0.2 ; python_version >= "3.9" and python_version < "4.0"
packaging==24.1 ; python_version >= "3.8" and python_version < "4.0"
pygments==2.18.0 ; python_version >= "3.8" and python_version < "4.0"
python-dotenv==1.0.1 ; python_version >= "3.8" and python_version < "4.0"
Expand All @@ -28,7 +29,7 @@ sphinx-docsearch==0.1.0 ; python_version >= "3.8" and python_version < "4.0"
sphinx-sitemap==2.6.0 ; python_version >= "3.8" and python_version < "4.0"
sphinx==7.1.2 ; python_version >= "3.8" and python_version < "3.9"
sphinx==7.4.7 ; python_version >= "3.9" and python_version < "3.10"
sphinx==8.0.2 ; python_version >= "3.10" and python_version < "4.0"
sphinx==8.1.3 ; python_version >= "3.10" and python_version < "4.0"
sphinxcontrib-applehelp==1.0.4 ; python_version >= "3.8" and python_version < "3.9"
sphinxcontrib-applehelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
sphinxcontrib-devhelp==1.0.2 ; python_version >= "3.8" and python_version < "3.9"
Expand Down
8 changes: 4 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
nox.options.stop_on_first_error = True
nox.options.sessions = ["docs", "lint", "fmt", "mypy", "tests"]

python_versions = ["3.12", "3.11", "3.10", "3.9", "3.8"]
python_versions = ["3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
session_install = nox.Session.install


Expand Down Expand Up @@ -102,7 +102,7 @@ def docs(session: nox.Session, live: bool = False, verbose: bool = False) -> Non

@nox.session
def live_docs(session: nox.Session) -> None:
"""Build the docs with :cmd:sphinx-autobuild`."""
"""Build the docs with `sphinx-autobuild`."""
verbose = bool("--verbose" in session.posargs)
docs(session, True, verbose)

Expand All @@ -127,7 +127,7 @@ def xml(session: nox.Session) -> None:

@nox.session(venv_backend=None)
def export(session: nox.Session) -> None:
"""Export a :file`requirements.txt` file for Netlify (Python 3.8).
"""Export a `requirements.txt` file for Netlify (Python 3.8).

On Netlify, we install Poetry, Pip, and Pipx with the same versions
as specified in :file:`requirements.txt`. Then, we use poetry
Expand Down Expand Up @@ -166,7 +166,7 @@ def fmt(session: nox.Session) -> None:
session.run("ruff", "format", ".")


@nox.session(python=["3.8", "3.12"])
@nox.session(python=[python_versions[0], python_versions[-1]])
def mypy(session: nox.Session) -> None:
"""Type-check python files with mypy.

Expand Down
485 changes: 293 additions & 192 deletions poetry.lock

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
argcomplete==3.5.0 ; python_version == "3.8"
build==1.2.2 ; python_version == "3.8"
argcomplete==3.5.1 ; python_version == "3.8"
build==1.2.2.post1 ; python_version == "3.8"
cachecontrol[filecache]==0.14.0 ; python_version == "3.8"
certifi==2024.8.30 ; python_version == "3.8"
cffi==1.17.1 ; (sys_platform == "darwin" or sys_platform == "linux") and python_version == "3.8" and (sys_platform == "darwin" or platform_python_implementation != "PyPy")
charset-normalizer==3.3.2 ; python_version == "3.8"
charset-normalizer==3.4.0 ; python_version == "3.8"
cleo==2.1.0 ; python_version == "3.8"
click==8.1.7 ; python_version == "3.8"
colorama==0.4.6 ; python_version == "3.8" and (sys_platform == "win32" or os_name == "nt" or platform_system == "Windows")
colorlog==6.8.2 ; python_version == "3.8"
crashtest==0.4.1 ; python_version == "3.8"
cryptography==43.0.1 ; sys_platform == "linux" and python_version == "3.8"
distlib==0.3.8 ; python_version == "3.8"
dulwich==0.22.1 ; python_version == "3.8"
cryptography==43.0.3 ; sys_platform == "linux" and python_version == "3.8"
distlib==0.3.9 ; python_version == "3.8"
dulwich==0.21.7 ; python_version == "3.8"
fastjsonschema==2.20.0 ; python_version == "3.8"
filelock==3.16.1 ; python_version == "3.8"
idna==3.10 ; python_version == "3.8"
Expand All @@ -20,19 +20,19 @@ importlib-resources==6.4.5 ; python_version == "3.8"
installer==0.7.0 ; python_version == "3.8"
jaraco-classes==3.4.0 ; python_version == "3.8"
jeepney==0.8.0 ; sys_platform == "linux" and python_version == "3.8"
keyring==25.4.1 ; python_version == "3.8"
keyring==24.3.1 ; python_version == "3.8"
more-itertools==10.5.0 ; python_version == "3.8"
msgpack==1.1.0 ; python_version == "3.8"
nox==2024.4.15 ; python_version == "3.8"
nox==2024.10.9 ; python_version == "3.8"
packaging==24.1 ; python_version == "3.8"
pexpect==4.9.0 ; python_version == "3.8"
pip==24.2 ; python_version == "3.8"
pipx==1.7.1 ; python_version == "3.8"
pkginfo==1.11.1 ; python_version == "3.8"
pkginfo==1.11.2 ; python_version == "3.8"
platformdirs==4.3.6 ; python_version == "3.8"
poetry-core==1.9.0 ; python_version == "3.8"
poetry-core==1.9.1 ; python_version == "3.8"
poetry-plugin-export==1.8.0 ; python_version == "3.8"
poetry==1.8.3 ; python_version == "3.8"
poetry==1.8.4 ; python_version == "3.8"
ptyprocess==0.7.0 ; python_version == "3.8"
pycparser==2.22 ; (sys_platform == "darwin" or sys_platform == "linux") and python_version == "3.8" and (sys_platform == "darwin" or platform_python_implementation != "PyPy")
pyproject-hooks==1.2.0 ; python_version == "3.8"
Expand All @@ -44,9 +44,9 @@ secretstorage==3.3.3 ; sys_platform == "linux" and python_version == "3.8"
shellingham==1.5.4 ; python_version == "3.8"
tomli==2.0.2 ; python_version == "3.8"
tomlkit==0.13.2 ; python_version == "3.8"
trove-classifiers==2024.9.12 ; python_version == "3.8"
trove-classifiers==2024.10.16 ; python_version == "3.8"
urllib3==2.2.3 ; python_version == "3.8"
userpath==1.9.2 ; python_version == "3.8"
virtualenv==20.26.6 ; python_version == "3.8"
virtualenv==20.27.0 ; python_version == "3.8"
xattr==1.1.0 ; sys_platform == "darwin" and python_version == "3.8"
zipp==3.20.2 ; python_version == "3.8"
2 changes: 1 addition & 1 deletion src/sphinxawesome_theme/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from sphinx.application import Sphinx
from sphinx.directives.code import CodeBlock
from sphinx.locale import __
from sphinx.util import logging, parselinenos
from sphinx.util import logging, parselinenos # type: ignore[attr-defined]

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/sphinxawesome_theme/logos.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

from docutils.nodes import Node
from sphinx.application import Sphinx
from sphinx.util import isurl, logging
from sphinx.util import isurl, logging # type: ignore[attr-defined]
from sphinx.util.fileutil import copy_asset_file

logger = logging.getLogger(__name__)
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14 changes: 7 additions & 7 deletions src/sphinxawesome_theme/static/theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/sphinxawesome_theme/static/theme.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions src/theme-src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"author": "Kai Welke",
"license": "MIT",
"dependencies": {
"@alpinejs/intersect": "^3.14.1",
"alpinejs": "^3.14.1",
"@alpinejs/intersect": "^3.14.3",
"alpinejs": "^3.14.3",
"clipboard": "^2.0.11"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@fontsource/jetbrains-mono": "^5.1.1",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@tailwindcss/typography": "^0.5.15",
Expand All @@ -30,21 +30,21 @@
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"cssnano-preset-advanced": "^7.0.6",
"eslint": "^9.12.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.6",
"postcss-preset-env": "^10.0.7",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"stylelint": "^16.9.0",
"stylelint": "^16.10.0",
"stylelint-prettier": "^5.0.2",
"stylelint-webpack-plugin": "^5.0.1",
"tailwindcss": "^3.4.13",
"tailwindcss": "^3.4.14",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0"
Expand Down
Loading