Skip to content

Commit 21d5104

Browse files
authored
Merge pull request #525 from dbic/rf-travis
Drop outdated 3.5, fix compatibility with recent datalads
2 parents f44c099 + d09cec1 commit 21d5104

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# vim ft=yaml
22
language: python
33
python:
4-
- 3.5
54
- 3.6
65
- 3.7
76
- 3.8
7+
- 3.9
88

99
cache:
1010
- apt

heudiconv/external/dlad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def add_to_datalad(topdir, studydir, msg, bids):
5858
ds_ = dl.create(curdir_, dataset=superds,
5959
force=True,
6060
# initiate annex only at the bottom repository
61-
no_annex=isubdir<(len(subdirs)-1),
61+
annex=isubdir==(len(subdirs)-1),
6262
fake_dates=True,
6363
# shared_access='all',
6464
)

heudiconv/info.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212
'Environment :: Console',
1313
'Intended Audience :: Science/Research',
1414
'License :: OSI Approved :: Apache Software License',
15-
'Programming Language :: Python :: 3.5',
1615
'Programming Language :: Python :: 3.6',
1716
'Programming Language :: Python :: 3.7',
17+
'Programming Language :: Python :: 3.8',
18+
'Programming Language :: Python :: 3.9',
1819
'Topic :: Scientific/Engineering'
1920
]
2021

21-
PYTHON_REQUIRES = ">=3.5"
22+
PYTHON_REQUIRES = ">=3.6"
2223

2324
REQUIRES = [
2425
'nibabel',
@@ -37,7 +38,7 @@
3738
'inotify',
3839
]
3940

40-
MIN_DATALAD_VERSION = '0.12.4'
41+
MIN_DATALAD_VERSION = '0.13.0'
4142
EXTRA_REQUIRES = {
4243
'tests': TESTS_REQUIRES,
4344
'extras': [

0 commit comments

Comments
 (0)