Skip to content

Commit 2acaa82

Browse files
cdb184d8ea95ff285d7b8aa64772070f74d8be1f
1 parent e479549 commit 2acaa82

File tree

167 files changed

+1422
-913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+1422
-913
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,19 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install flake8 pytest
28-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29-
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
30-
- name: Lint with flake8
31-
run: |
32-
# stop the build if there are Python syntax errors or undefined names
33-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
34-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
35-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
27+
pip install -r requirements.txt
28+
pip install -r test-requirements.txt
3629
- name: Test with pytest
3730
run: |
38-
pytest
31+
pytest --cov={{packageName}}

.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=neurostore_sdk
1616

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

.openapi-generator/FILES

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -231,19 +231,4 @@ setup.cfg
231231
setup.py
232232
test-requirements.txt
233233
test/__init__.py
234-
test/test_pipeline.py
235-
test/test_pipeline_config.py
236-
test/test_pipeline_config_list.py
237-
test/test_pipeline_configs_api.py
238-
test/test_pipeline_list.py
239-
test/test_pipeline_run.py
240-
test/test_pipeline_run_list.py
241-
test/test_pipeline_run_result.py
242-
test/test_pipeline_run_result_list.py
243-
test/test_pipeline_run_result_vote.py
244-
test/test_pipeline_run_result_vote_list.py
245-
test/test_pipeline_run_result_votes_api.py
246-
test/test_pipeline_run_results_api.py
247-
test/test_pipeline_runs_api.py
248-
test/test_pipelines_api.py
249234
tox.ini

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.4.0
1+
7.11.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.7"
54
- "3.8"
65
- "3.9"
76
- "3.10"
87
- "3.11"
8+
- "3.12"
99
# uncomment the following if needed
10-
#- "3.11-dev" # 3.11 development branch
10+
#- "3.12-dev" # 3.12 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.4.0
8+
- Generator version: 7.11.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.7+
14+
Python 3.8+
1515

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

docs/AnalysisBase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ print(AnalysisBase.to_json())
2424
# convert the object into a dict
2525
analysis_base_dict = analysis_base_instance.to_dict()
2626
# create an instance of AnalysisBase from a dict
27-
analysis_base_form_dict = analysis_base.from_dict(analysis_base_dict)
27+
analysis_base_from_dict = AnalysisBase.from_dict(analysis_base_dict)
2828
```
2929
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3030

docs/AnalysisCommon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ print(AnalysisCommon.to_json())
2626
# convert the object into a dict
2727
analysis_common_dict = analysis_common_instance.to_dict()
2828
# create an instance of AnalysisCommon from a dict
29-
analysis_common_form_dict = analysis_common.from_dict(analysis_common_dict)
29+
analysis_common_from_dict = AnalysisCommon.from_dict(analysis_common_dict)
3030
```
3131
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3232

docs/AnalysisList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ print(AnalysisList.to_json())
2323
# convert the object into a dict
2424
analysis_list_dict = analysis_list_instance.to_dict()
2525
# create an instance of AnalysisList from a dict
26-
analysis_list_form_dict = analysis_list.from_dict(analysis_list_dict)
26+
analysis_list_from_dict = AnalysisList.from_dict(analysis_list_dict)
2727
```
2828
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2929

docs/AnalysisRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ print(AnalysisRequest.to_json())
3333
# convert the object into a dict
3434
analysis_request_dict = analysis_request_instance.to_dict()
3535
# create an instance of AnalysisRequest from a dict
36-
analysis_request_form_dict = analysis_request.from_dict(analysis_request_dict)
36+
analysis_request_from_dict = AnalysisRequest.from_dict(analysis_request_dict)
3737
```
3838
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3939

0 commit comments

Comments
 (0)