Skip to content

Commit 9d71567

Browse files
authored
Merge pull request #602 from nipype/prerelease
MNT: Prerelease updates
2 parents d31d842 + b026b78 commit 9d71567

File tree

8 files changed

+20
-15
lines changed

8 files changed

+20
-15
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
name: Install deps
4949
command: |
5050
pip install --upgrade pip
51+
pip install --no-cache-dir -r docs/requirements.txt
5152
pip install --no-cache-dir .[doc]
5253
- run:
5354
name: Build only this commit

.flake8

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ exclude =
88
docs/tools/
99
docs/conf.py
1010
pydra/_version.py
11-
versioneer.py
1211
max-line-length=105
1312
ignore = E203,W503,F541

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ cov.xml
1717
.idea
1818

1919
.DS_Store
20+
21+
# This can be generated in-tree. We never want to commit it.
22+
pydra/_version.py

.zenodo.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@
7070
"name": "Close, Thomas G.",
7171
"orcid": "0000-0002-4160-2134"
7272
},
73-
{
74-
"affiliation": "MIT, HMS",
75-
"name": "Ghosh, Satrajit",
76-
"orcid": "0000-0002-5312-6729"
77-
},
7873
{
7974
"affiliation": "Paris Brain Institute",
8075
"name": "Vaillant, Ghislain",
8176
"orcid": "0000-0003-0267-3033"
77+
},
78+
{
79+
"affiliation": "MIT, HMS",
80+
"name": "Ghosh, Satrajit",
81+
"orcid": "0000-0002-5312-6729"
8282
}
8383
],
8484
"keywords": [

codecov.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ coverage:
33
ignore: # files and folders that will be removed during processing
44
- "**/tests"
55
- "pydra/_version.py"
6-
- "setup.py"
7-
- "versioneer.py"
86
status:
97
project:
108
default:

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"sphinx.ext.ifconfig",
4646
"sphinx.ext.linkcode",
4747
"sphinx.ext.githubpages",
48+
"sphinx.ext.napoleon",
4849
"sphinxcontrib.apidoc",
49-
"sphinxcontrib.napoleon",
5050
]
5151

5252
# Add any paths that contain templates here, relative to this directory.
@@ -89,7 +89,7 @@
8989
napoleon_custom_sections = [("Inputs", "Parameters"), ("Outputs", "Parameters")]
9090

9191
# Intersphinx
92-
intersphinx_mapping = {"https://docs.python.org/": None}
92+
intersphinx_mapping = {"https://docs.python.org/3/": None}
9393

9494
# Linkcode
9595
# The following is used by sphinx.ext.linkcode to provide links to github

docs/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This requirements file includes unreleased dependencies above and beyond those
2+
# specified in the project.optional-dependencies.doc table of pyproject.toml
3+
git+https://github.com/effigies/sphinxcontrib-versioning.git@master#egg=sphinxcontrib-versioning

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,13 @@ classifiers = [
3232
"Intended Audience :: Science/Research",
3333
"License :: OSI Approved :: Apache Software License",
3434
"Operating System :: MacOS :: MacOS X",
35+
"Operating System :: Microsoft :: Windows",
3536
"Operating System :: POSIX :: Linux",
36-
"Programming Language :: Python :: 3",
37+
"Programming Language :: Python :: 3.7",
38+
"Programming Language :: Python :: 3.8",
39+
"Programming Language :: Python :: 3.9",
40+
"Programming Language :: Python :: 3.10",
41+
"Programming Language :: Python :: 3.11",
3742
"Topic :: Scientific/Engineering",
3843
]
3944
dynamic = ["version"]
@@ -49,14 +54,10 @@ dev = [
4954
"pydra[test]",
5055
]
5156
doc = [
52-
"attrs >=19.1.0",
53-
"cloudpickle",
54-
"filelock",
5557
"packaging",
5658
"sphinx >=2.1.2",
5759
"sphinx_rtd_theme",
5860
"sphinxcontrib-apidoc ~=0.3.0",
59-
"sphinxcontrib-napoleon",
6061
"sphinxcontrib-versioning",
6162
]
6263
test = [

0 commit comments

Comments
 (0)