-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
204 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,36 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
apt_packages: | ||
- jq | ||
os: ubuntu-lts-latest | ||
tools: | ||
python: "3.11" | ||
python: latest | ||
jobs: | ||
# The *_create_environment and post_install steps replace RTD's virtual environment | ||
# steps with uv, a much faster alternative to virtualenv+pip. | ||
pre_create_environment: | ||
# Install jq and uv | ||
- asdf plugin add jq https://github.com/lsanwick/asdf-jq.git | ||
- asdf plugin add uv https://github.com/asdf-community/asdf-uv.git | ||
- asdf install jq latest | ||
- asdf install uv latest | ||
- asdf global jq latest | ||
- asdf global uv latest | ||
# Turn `python -m virtualenv` into `python -c pass` | ||
- truncate --size 0 $( dirname $( uv python find ) )/../lib/python3*/site-packages/virtualenv/__main__.py | ||
post_create_environment: | ||
- uv venv $READTHEDOCS_VIRTUALENV_PATH | ||
# Turn `python -m pip` into `python -c pass` | ||
- truncate --size 0 $( ls -d $READTHEDOCS_VIRTUALENV_PATH/lib/python3* )/site-packages/pip.py | ||
# post_install replaces the top-level {python: {install: [{requirements: requirements.txt}]}} | ||
post_install: | ||
# Use a cache dir in the same mount to halve the install time | ||
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH uv pip install --cache-dir $READTHEDOCS_VIRTUALENV_PATH/../../uv_cache -r requirements.txt | ||
# Normal pre-build step to inject schema.json into the source directory | ||
# so schema.json is hosted alongside the specification documents | ||
pre_build: | ||
- bst -v export --output src/schema.json | ||
- tools/no-bad-schema-paths.sh src/schema.json # README.md might need fixing | ||
|
||
mkdocs: | ||
configuration: mkdocs.yml | ||
fail_on_warning: true | ||
|
||
python: | ||
install: | ||
- requirements: requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.11.4-dev | ||
1.1.0-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
# A list of released BIDS versions as of the next schema release | ||
- '1.10.0' | ||
- '1.9.0' | ||
- '1.8.0' | ||
- '1.7.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.