Skip to content

Commit 0c8e268

Browse files
update to remove requirements.txt install
1 parent 32f7656 commit 0c8e268

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v5
3131
with:
32-
python-version: ${{ matrix.python-version }}
32+
python-version: "3.11"
3333
enable-cache: true
3434
cache-dependency-glob: "requirements**.txt"
3535

noxfile.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def translation(session):
1414
"""
1515
Build the gettext .pot files.
1616
"""
17-
session.install("-r", "requirements.txt")
1817
target_dir = "locales"
1918
session.run(
2019
"sphinx-build",
@@ -32,8 +31,6 @@ def build(session, autobuild=False):
3231
"""
3332
Make the website.
3433
"""
35-
session.install("-r", "requirements.txt")
36-
3734
if autobuild:
3835
command = "sphinx-autobuild"
3936
extra_args = "--host", "0.0.0.0"
@@ -76,7 +73,6 @@ def linkcheck(session):
7673
"""
7774
Check for broken links.
7875
"""
79-
session.install("-r", "requirements.txt")
8076
session.run(
8177
"sphinx-build",
8278
"-b",

0 commit comments

Comments
 (0)