Skip to content

Commit 1ca6481

Browse files
a6f1c82ebabef6e25a07ec84ee8b31419d2d39c4
1 parent 4f3f319 commit 1ca6481

20 files changed

+236
-125
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ name: neurosynth_compose_sdk Python package
77

88
on: [push, pull_request]
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
build:
1215

1316
runs-on: ubuntu-latest
1417
strategy:
1518
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1720

1821
steps:
1922
- uses: actions/checkout@v4
@@ -28,4 +31,4 @@ jobs:
2831
pip install -r test-requirements.txt
2932
- name: Test with pytest
3033
run: |
31-
pytest --cov={{packageName}}
34+
pytest --cov=neurosynth_compose_sdk

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ docs/_build/
6262
# PyBuilder
6363
target/
6464

65-
#Ipython Notebook
65+
# Ipython Notebook
6666
.ipynb_checkpoints

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ stages:
1414
- pip install -r test-requirements.txt
1515
- pytest --cov=neurosynth_compose_sdk
1616

17-
pytest-3.8:
18-
extends: .pytest
19-
image: python:3.8-alpine
2017
pytest-3.9:
2118
extends: .pytest
2219
image: python:3.9-alpine
@@ -29,3 +26,6 @@ pytest-3.11:
2926
pytest-3.12:
3027
extends: .pytest
3128
image: python:3.12-alpine
29+
pytest-3.13:
30+
extends: .pytest
31+
image: python:3.13-alpine

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.11.0
1+
7.17.0

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ref: https://docs.travis-ci.com/user/languages/python
22
language: python
33
python:
4-
- "3.8"
54
- "3.9"
65
- "3.10"
76
- "3.11"
87
- "3.12"
8+
- "3.13"
99
# uncomment the following if needed
10-
#- "3.12-dev" # 3.12 development branch
10+
#- "3.13-dev" # 3.13 development branch
1111
#- "nightly" # nightly build
1212
# command to install dependencies
1313
install:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ This Python package is automatically generated by the [OpenAPI Generator](https:
55

66
- API version: 1.0
77
- Package version: 0.0.1
8-
- Generator version: 7.11.0
8+
- Generator version: 7.17.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010
For more information, please visit [https://github.com/jdkent](https://github.com/jdkent)
1111

1212
## Requirements.
1313

14-
Python 3.8+
14+
Python 3.9+
1515

1616
## Installation & Usage
1717
### pip install

docs/AnnotationPostBody.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**cached_studyset_id** | **str** | |
8+
**cached_studyset_id** | **str** | | [optional]
99
**neurostore_id** | **str** | the id of the annotation on neurostore | [optional]
1010
**snapshot** | **object** | the snapshot taken of the annotation pending a successful run of the meta-analytic algorithm | [optional]
1111
**studyset** | **str** | The related cached studyset to this annotation. | [optional] [readonly]

docs/MetaAnalysisPostBody.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**specification** | [**MetaAnalysisSpecification**](MetaAnalysisSpecification.md) | |
8+
**specification** | [**MetaAnalysisSpecification**](MetaAnalysisSpecification.md) | | [optional]
99
**studyset** | [**MetaAnalysisStudyset**](MetaAnalysisStudyset.md) | | [optional]
1010
**annotation** | [**MetaAnalysisAnnotation**](MetaAnalysisAnnotation.md) | | [optional]
1111
**name** | **str** | Human-readable name of the meta-analysis. | [optional]
1212
**description** | **str** | Long form description of the meta-analysis. | [optional]
13-
**cached_studyset_id** | **str** | The id of the studyset on neurosynth-compose (as opposed to the id of the studyset on neurostore). Multiple snapshots of the studyset can be stored on neurosynth-compose so knowing which snapshot is being referenced is necessary. |
14-
**cached_annotation_id** | **str** | The id of the annotation on neurosynth-compose (as opposed to the id of the annotation on neurostore). Multiple snapshots of the annotation can be stored on neurosynth-compose so knowing which snapshot is being referenced is necessary. |
13+
**cached_studyset_id** | **str** | The id of the studyset on neurosynth-compose (as opposed to the id of the studyset on neurostore). Multiple snapshots of the studyset can be stored on neurosynth-compose so knowing which snapshot is being referenced is necessary. | [optional]
14+
**cached_annotation_id** | **str** | The id of the annotation on neurosynth-compose (as opposed to the id of the annotation on neurostore). Multiple snapshots of the annotation can be stored on neurosynth-compose so knowing which snapshot is being referenced is necessary. | [optional]
1515
**results** | [**MetaAnalysisResults**](MetaAnalysisResults.md) | | [optional]
1616
**provenance** | **object** | | [optional]
1717
**project** | **str** | | [optional]

docs/StudysetPostBody.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**neurostore_id** | **str** | The id of the studyset on neurostore. |
8+
**neurostore_id** | **str** | The id of the studyset on neurostore. | [optional]
99
**snapshot** | **object** | The snapshot of the studyset pending a successful run of the meta-analysis. | [optional]
1010
**neurostore_url** | **str** | | [optional] [readonly]
1111
**version** | **str** | A string representing a labeled version of this particular studyset. | [optional]

0 commit comments

Comments
 (0)