Skip to content

Commit f58bdbe

Browse files
authored
Merge pull request #768 from bids-standard/rel/0.14.0
REL: 0.14.0
2 parents bafd148 + 3152a46 commit f58bdbe

File tree

6 files changed

+110
-84
lines changed

6 files changed

+110
-84
lines changed

.circleci/artifact_path

Lines changed: 0 additions & 1 deletion
This file was deleted.

.circleci/config.yml

Lines changed: 0 additions & 75 deletions
This file was deleted.

.github/workflows/docs.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- maint/*
8+
- rel/*
9+
- docs/*
10+
tags:
11+
- '*'
12+
13+
defaults:
14+
run:
15+
shell: bash
16+
17+
jobs:
18+
docs:
19+
runs-on: ubuntu-latest
20+
strategy:
21+
matrix:
22+
include:
23+
- python-version: 3.9
24+
steps:
25+
- uses: actions/checkout@v2
26+
with:
27+
submodules: recursive
28+
fetch-depth: 0
29+
- name: Set up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v2
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
- name: Display Python version
34+
run: python -c "import sys; print(sys.version)"
35+
- name: Create virtual environment
36+
run: tools/ci/create_venv.sh
37+
- name: Install pybids
38+
run: tools/ci/install_extras.sh
39+
env:
40+
EXTRA_PIP_FLAGS: ""
41+
CHECK_TYPE: doc
42+
- name: Build documentation
43+
run: |
44+
source tools/ci/activate.sh
45+
make -C doc html
46+
- name: Upload docs as artifacts
47+
uses: actions/upload-artifact@v2
48+
with:
49+
path: doc/_build/html
50+
- name: Deploy (on tags)
51+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
52+
uses: peaceiris/actions-gh-pages@v3
53+
with:
54+
github_token: ${{ secrets.GITHUB_TOKEN }}
55+
publish_dir: doc/_build/html
56+
force_orphan: true
57+
user_name: "BIDS Maintenance"
58+
user_email: [email protected]

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Christopher J. Markiewicz <[email protected]>
66
Christopher J. Markiewicz <[email protected]> <[email protected]>
77
Chris Holdgraf <[email protected]>
88
9+
Dimitri Papadopoulos Orfanos <[email protected]>
910
Dylan M. Nielson <[email protected]>
1011
1112
Evgenii Kalenkovich <[email protected]>

.zenodo.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
"name": "Esteban, Oscar",
5757
"orcid": "0000-0001-8435-6191"
5858
},
59+
{
60+
"name": "Kalenkovich, Evgenii",
61+
"orcid": "0000-0002-4606-4179"
62+
},
5963
{
6064
"affiliation": "Institute for Problems of Information Transmission",
6165
"name": "Petrov, Dmitry"
@@ -70,6 +74,11 @@
7074
"name": "Appelhoff, Stefan",
7175
"orcid": "0000-0001-8002-0877"
7276
},
77+
{
78+
"name": "Bansal, Shashank",
79+
"affiliation": "Stanford University",
80+
"orcid": "0000-0002-1252-8772 "
81+
},
7382
{
7483
"affiliation": "Concordia University",
7584
"name": "Hayot-Sasson, Val\u00e9rie",
@@ -80,6 +89,9 @@
8089
"name": "Nielson, Dylan M.",
8190
"orcid": "0000-0003-4613-6643"
8291
},
92+
{
93+
"name": "Papadopoulos Orfanos, Dimitri"
94+
},
8395
{
8496
"affiliation": "MRC Cognition and Brain Sciences Unit",
8597
"name": "Carlin, Johan",
@@ -181,9 +193,6 @@
181193
"name": "Holdgraf, Chris",
182194
"orcid": "0000-0002-2391-0678"
183195
},
184-
{
185-
"name": "Kalenkovich, Evgenii"
186-
},
187196
{
188197
"affiliation": "Queen Mary University London",
189198
"name": "Staden, Isla",
@@ -252,11 +261,6 @@
252261
"name": "Blair, Ross",
253262
"orcid": "0000-0003-3007-1056"
254263
},
255-
{
256-
"name": "Shashank Bansal",
257-
"affiliation": "Stanford University",
258-
"orcid": "0000-0002-1252-8772 "
259-
},
260264
{
261265
"name": "Sundaravadivelu, Suganya"
262266
}

CHANGELOG.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,45 @@
11
Changelog
22
=========
33

4+
Version 0.14.0 (November 09, 2021)
5+
----------------------------------
6+
7+
New feature release in the 0.14.x series.
8+
9+
This release includes a significant refactor of BIDS Statistical Models,
10+
replacing the ``bids.analysis`` module with ``bids.modeling``.
11+
12+
Changes to ``bids.layout`` are minimal, and we do not anticipate API breakage.
13+
14+
* FIX: LGTM.com warning: Implicit string concatenation in a list (#785)
15+
* FIX: Take the intersection of variables and Model.X,
16+
ignoring missing variables (usually contrasts) (#764)
17+
* FIX: Associate "is_metadata" with Tag, not Entity; and only return
18+
non-metadata entries for core Entities in ``get(return_type='id')`` (#749)
19+
* FIX: Only include regressors if they are TSV (#752)
20+
* FIX: ensure force_dense=True runs to_dense only on sparse variables (#745)
21+
* FIX: get unique, with conflicting meta-data (#748)
22+
* FIX: Clean up some deprecation and syntax warnings (#738)
23+
* ENH: Add ``pybids upgrade`` command (#654)
24+
* ENH: Add Lag transformation (#759)
25+
* ENH: Use indirect transformations structure (#737)
26+
* ENH: Add visualization for statsmodel graph (#742)
27+
* ENH: Permit explicit intercept (1) in Contrasts and DummyContrasts (#743)
28+
* ENH: Add meta-analysis model type (#731)
29+
* ENH: Contrast type is now test (#733)
30+
* REF: Use pathlib.Path internally when possible (#746)
31+
* REF: Remove group_by from edges and add filter (#734)
32+
* REF: Improved/refactored StatsModels module (#722)
33+
* MNT: Make sure codespell skips .git when run locally (#787)
34+
* MNT: LGTM.com recommendations (#786)
35+
* MNT: Better codespell configuration (#782)
36+
* MNT: Constrain formulaic version to 0.2.x . (#784)
37+
* MNT: Update versioneer: 0.18 → 0.20 (#778)
38+
* MNT: Add "codespell" tool to CI checks to catch typos sooner (#776)
39+
* MNT: Disable bids-nodot mode (#769)
40+
* MNT: Send codecov reports again (#766)
41+
* MNT: Set minimum version to Python 3.6 (#739)
42+
443
Version 0.13.2 (August 20, 2021)
544
--------------------------------
645

0 commit comments

Comments
 (0)