Skip to content

Commit 7331562

Browse files
authored
Merge branch 'master' into enh/conform-mode
2 parents 7832deb + 2a64669 commit 7331562

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
run: tox c
191191
- name: Run tox
192192
run: tox -vv --exit-and-dump-after 1200
193-
- uses: codecov/codecov-action@v4
193+
- uses: codecov/codecov-action@v5
194194
if: ${{ always() }}
195195
with:
196196
files: cov.xml

.readthedocs.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-lts-latest
5+
tools:
6+
python: latest
7+
jobs:
8+
pre_create_environment:
9+
- asdf plugin add uv
10+
- asdf install uv latest
11+
- asdf global uv latest
12+
# Turn `python -m virtualenv` into `python -c pass`
13+
- truncate --size 0 $( dirname $( uv python find ) )/../lib/python3*/site-packages/virtualenv/__main__.py
14+
post_create_environment:
15+
- uv venv $READTHEDOCS_VIRTUALENV_PATH
16+
# Turn `python -m pip` into `python -c pass`
17+
- truncate --size 0 $( ls -d $READTHEDOCS_VIRTUALENV_PATH/lib/python3* )/site-packages/pip.py
18+
post_install:
19+
# Use a cache dir in the same mount to halve the install time
20+
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH uv pip install --cache-dir $READTHEDOCS_VIRTUALENV_PATH/../../uv_cache .[doc]

0 commit comments

Comments
 (0)