Skip to content

Commit cfaddc3

Browse files
committed
Update dependencies
1 parent 8a273ea commit cfaddc3

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version: ['3.10', '3.11', '3.12', '3.13']
18-
pandoc-version: ['3.6']
18+
pandoc-version: [3.6.3]
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Set up Python ${{ matrix.python-version }}
@@ -37,7 +37,7 @@ jobs:
3737
strategy:
3838
matrix:
3939
python-version: ['3.12']
40-
pandoc-version: [3.0.1, 3.1.13, 3.2.1, '3.3', '3.4', '3.5', '3.6']
40+
pandoc-version: [3.0.1, 3.1.13, 3.2.1, '3.3', '3.4', '3.5', 3.6.3]
4141
steps:
4242
- uses: actions/checkout@v4
4343
- name: Set up Python ${{ matrix.python-version }}
@@ -59,7 +59,7 @@ jobs:
5959
strategy:
6060
matrix:
6161
python-version: ['3.12']
62-
pandoc-version: ['3.6']
62+
pandoc-version: [3.6.3]
6363
steps:
6464
- uses: actions/checkout@v4
6565
- name: Set up Python
@@ -84,7 +84,7 @@ jobs:
8484
strategy:
8585
matrix:
8686
python-version: ['3.12']
87-
pandoc-version: ['3.6']
87+
pandoc-version: [3.6.3]
8888
steps:
8989
- uses: actions/checkout@v4
9090
- name: Set up Python

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ dependencies = [
6969
# Types
7070
"types-PyYAML~=6.0",
7171
# Formatter
72-
"black[jupyter]~=24.10",
72+
"black[jupyter]~=25.1",
7373
# Style checkers
7474
"doc8~=1.1",
75-
"mypy~=1.13",
75+
"mypy~=1.15",
7676
"flake8~=7.1",
7777
"flake8-pyproject~=1.2",
7878
"flake8-annotations-complexity~=0.0",
@@ -97,10 +97,10 @@ dependencies = [
9797
"flake8-variables-names~=0.0",
9898
"pep8-naming~=0.14",
9999
"darglint~=1.8.1",
100-
"pydoclint[flake8]~=0.5",
100+
"pydoclint[flake8]~=0.6",
101101
"teyit~=0.4",
102102
"refurb~=2.0",
103-
"ruff~=0.8"
103+
"ruff~=0.9"
104104
]
105105

106106
[tool.hatch.envs.hatch-static-analysis.scripts]
@@ -136,7 +136,7 @@ check = [
136136
[tool.hatch.envs.docs]
137137
dependencies = [
138138
"myst-parser~=4.0",
139-
"Sphinx~=8.1",
139+
"Sphinx~=8.2",
140140
"sphinx-rtd-theme~=3.0",
141141
"sphinx-copybutton~=0.5"
142142
]

src/pandoc_latex_admonition/_main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ def default_environment() -> dict[str, Any]:
4444
}
4545

4646

47-
def x11colors():
47+
def x11colors() -> dict[str, str]:
4848
"""
4949
Get the x11 colors.
5050
5151
Returns
5252
-------
53+
dict[str, str]
5354
The x11 colors
5455
"""
5556
# See https://www.w3.org/TR/css-color-3/#svg-color

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)