Skip to content

Commit 8a6fe80

Browse files
committed
CI: Installation of minimal deps wasn't kicking in
1 parent e1e08fd commit 8a6fe80

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Pin to lowest versions
3838
if: matrix.versions == 'minimal'
3939
run: |
40-
sed -i -E 's/#min //; s/" >=([0-9])/"== \1/' pyproject.toml
40+
sed -i -E 's/#min //; s/\b >=([0-9])/ ==\1/' pyproject.toml
4141
- name: Install Hatch
4242
run: |
4343
pip install hatch

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
dynamic = ["version"]
3333
requires-python = ">=3.7"
3434
dependencies = [
35-
"mkdocs >=1.0.3",
35+
"mkdocs >=1.1",
3636
]
3737

3838
[project.urls]
@@ -64,6 +64,8 @@ dependencies = [
6464
"testfixtures >=6.15.0",
6565
"MechanicalSoup >=0.12.0",
6666
"mkdocs-material >=6.1.5",
67+
#min "jinja2 >=2.10.1",
68+
#min "markupsafe >=2.0.1",
6769
]
6870
[tool.hatch.envs.test.scripts]
6971
test = [

0 commit comments

Comments
 (0)