Skip to content

Commit aac9503

Browse files
committed
Use requirements.txt format
1 parent 87ceaad commit aac9503

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/dist-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
env:
3535
DISTDIR: ${{ github.workspace }}/dist-sphinx
3636
- name: Export pydispatch lockfile
37-
run: uv export --frozen --no-emit-project --only-group test -o pylock.toml
37+
run: uv export --frozen --no-emit-project --only-group test -o requirements.txt
3838
- name: Export pydispatch_sphinx lockfile
39-
run: uv export --frozen --no-emit-project --only-group test -o pylock.toml
39+
run: uv export --frozen --no-emit-project --only-group test -o requirements.txt
4040
working-directory: ${{ github.workspace }}/sphinx-plugin
4141
- name: Upload artifacts
4242
uses: actions/upload-artifact@v5
@@ -53,8 +53,8 @@ jobs:
5353
with:
5454
name: 'lockfiles'
5555
path: |
56-
pylock.toml
57-
sphinx-plugin/pylock.toml
56+
requirements.txt
57+
sphinx-plugin/requirements.txt
5858
5959
test:
6060
needs: build
@@ -78,8 +78,8 @@ jobs:
7878
path: .
7979
- name: Install dependencies
8080
run: |
81-
pip install -r pylock.toml
82-
pip install -r sphinx-plugin/pylock.toml
81+
pip install -r requirements.txt
82+
pip install -r sphinx-plugin/requirements.txt
8383
- name: Download artifacts
8484
uses: actions/download-artifact@v5
8585
with:

0 commit comments

Comments
 (0)