Skip to content

Commit 1f91197

Browse files
authored
⬆️ Upgrade python version and dependencies
1 parent 4bf25e5 commit 1f91197

26 files changed

+801
-826
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: ['3.8', '3.9', '3.10']
23+
python-version: ['3.10', '3.11', '3.12']
2424

2525
steps:
2626
- uses: actions/checkout@v2

.pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ max-attributes=9
1919

2020
# we're going to support as many arguments as the API calls have
2121
disable=too-many-arguments,
22+
too-many-positional-arguments,
2223
# unfortunately this has to be disabled because of similar
2324
# import statements across different methods (which are
2425
# separated by different files by design)

poetry.lock

+762-797
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ packages = [
2727
]
2828

2929
[tool.poetry.dependencies]
30-
python = "^3.8"
30+
python = "^3.10"
3131
requests = "^2.20"
3232
semantic-version = "^2.8.5"
33-
pandas = {version = "^1.3.4", optional = true}
33+
pandas = {version = "^2.0.0", optional = true}
3434

3535
[tool.poetry.extras]
3636
data_science = ["pandas"]
3737

3838
[tool.poetry.group.dev.dependencies]
39-
pytest = "^6.2.5"
39+
pytest = "^7.0.0"
4040
pytest-cov = "^3.0.0"
4141
pytest-black = "^0.3.12"
4242
pytest-mypy = "^0.10.3"
43-
pytest-pylint = "^0.18.0"
43+
pytest-pylint = "^0.20.0"
4444
responses = "^0.14.0"
4545
pytest-mock = "^3.6.1"
4646
types-requests = "^2.26.1"

redcap/conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
I don't think this is the ideal workflow, but it's the best I
44
could come up with for having great, tested, examples
55
"""
6+
67
from pathlib import Path
78

89
import pytest

redcap/methods/arms.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project arms"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json
@@ -15,7 +16,6 @@ def export_arms(
1516
format_type: Literal["json", "csv", "xml", "df"] = "json",
1617
arms: Optional[List[str]] = None,
1718
):
18-
# pylint: disable=line-too-long
1919
"""
2020
Export the Arms of the Project
2121
@@ -36,7 +36,6 @@ def export_arms(
3636
>>> proj.export_arms()
3737
[{'arm_num': 1, 'name': 'Arm 1'}]
3838
"""
39-
# pylint:enable=line-too-long
4039
payload = self._initialize_payload(content="arm", format_type=format_type)
4140
if arms:
4241
# Turn list of arms into dict, and append to payload

redcap/methods/base.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The Base class for all REDCap methods"""
2+
23
from __future__ import annotations
34

45
import json
@@ -227,12 +228,10 @@ def _filter_metadata(
227228
self,
228229
key: str,
229230
field_name: None = None,
230-
) -> list:
231-
...
231+
) -> list: ...
232232

233233
@overload
234-
def _filter_metadata(self, key: str, field_name: str) -> str:
235-
...
234+
def _filter_metadata(self, key: str, field_name: str) -> str: ...
236235

237236
def _filter_metadata(self, key: str, field_name: Optional[str] = None):
238237
"""Safely filter project metadata based off requested column and field_name"""

redcap/methods/data_access_groups.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project data access groups"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json

redcap/methods/events.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project events"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json
@@ -15,7 +16,6 @@ def export_events(
1516
format_type: Literal["json", "csv", "xml", "df"] = "json",
1617
arms: Optional[List[str]] = None,
1718
):
18-
# pylint: disable=line-too-long
1919
"""
2020
Export the Events of the Project
2121
@@ -37,7 +37,6 @@ def export_events(
3737
[{'event_name': 'Event 1', 'arm_num': 1, 'unique_event_name': 'event_1_arm_1',
3838
'custom_event_label': '', 'event_id': ...}, {'event_name': 'Event 2', ...}]
3939
"""
40-
# pylint:enable=line-too-long
4140
payload = self._initialize_payload(content="event", format_type=format_type)
4241
if arms:
4342
# Turn list of arms into dict, and append to payload

redcap/methods/field_names.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project field names"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json

redcap/methods/files.py

-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ class Files(Base):
1414

1515
def _check_file_field(self, field: str) -> None:
1616
"""Check that field exists and is a file field"""
17-
# Since we initialize self.field_names as None, pylint worries that this will
18-
# produce an error
19-
# pylint: disable=unsupported-membership-test
2017
is_field = field in self.field_names
21-
# pylint: enable=unsupported-membership-test
2218
is_file = self._filter_metadata(key="field_type", field_name=field) == "file"
2319
if not (is_field and is_file):
2420
msg = f"'{ field }' is not a field or not a 'file' field"

redcap/methods/instruments.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project instruments"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, FileMap

redcap/methods/logging.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project field names"""
2+
23
from datetime import datetime
34
from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Union, cast
45

redcap/methods/metadata.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project metadata"""
2+
23
from typing import (
34
TYPE_CHECKING,
45
Any,

redcap/methods/project_info.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project info"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json

redcap/methods/records.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project records"""
2+
23
from datetime import datetime
34

45
from typing import (

redcap/methods/repeating.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project repeating instruments"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union, Literal, cast
34

45
from redcap.methods.base import Base

redcap/methods/reports.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project reports"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json

redcap/methods/surveys.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project surveys"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json

redcap/methods/user_roles.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project user roles"""
2+
23
from typing import (
34
TYPE_CHECKING,
45
Any,
@@ -43,11 +44,11 @@ def export_user_roles(
4344
[{'unique_role_name': ..., 'role_label': 'Test role', 'design': '0', 'alerts': '0',
4445
'user_rights': '0', 'data_access_groups': '0', 'reports': '0', 'stats_and_charts': '0',
4546
'manage_survey_participants': '0', 'calendar': '0', 'data_import_tool': '0',
46-
'data_comparison_tool': '0', 'logging': '0', 'file_repository': '0',
47-
'data_quality_create': '0', 'data_quality_execute': '0', 'api_export': '0',
48-
'api_import': '0', 'mobile_app': '0', 'mobile_app_download_data': '0',
49-
'record_create': '0', 'record_rename': '0', 'record_delete': '0',
50-
'lock_records_customization': '0', 'lock_records': '0', ...,
47+
'data_comparison_tool': '0', 'logging': '0', 'email_logging': '0',
48+
'file_repository': '0', 'data_quality_create': '0', 'data_quality_execute': '0',
49+
'api_export': '0', 'api_import': '0', 'api_modules': '0', 'mobile_app': '0',
50+
'mobile_app_download_data': '0', 'record_create': '0', 'record_rename': '0',
51+
'record_delete': '0', 'lock_records_customization': '0', 'lock_records': '0', ...,
5152
'forms': {'form_1': 2}, 'forms_export': {'form_1': 0}}]
5253
"""
5354
payload = self._initialize_payload(content="userRole", format_type=format_type)

redcap/methods/users.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""REDCap API methods for Project users"""
2+
23
from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional, Union, cast
34

45
from redcap.methods.base import Base, Json

redcap/request.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(
7070

7171
@staticmethod
7272
def _get_format_key(
73-
payload: Dict[str, Any]
73+
payload: Dict[str, Any],
7474
) -> Optional[Literal["json", "csv", "xml"]]:
7575
"""Determine format of the response
7676
@@ -101,8 +101,7 @@ def get_content(
101101
format_type: None,
102102
return_empty_json: Literal[True],
103103
return_bytes: Literal[False],
104-
) -> EmptyJson:
105-
...
104+
) -> EmptyJson: ...
106105

107106
@overload
108107
@staticmethod
@@ -111,8 +110,7 @@ def get_content(
111110
format_type: None,
112111
return_empty_json: Literal[False],
113112
return_bytes: Literal[True],
114-
) -> bytes:
115-
...
113+
) -> bytes: ...
116114

117115
@overload
118116
@staticmethod
@@ -132,8 +130,7 @@ def get_content(
132130
format_type: Literal["csv", "xml"],
133131
return_empty_json: Literal[False],
134132
return_bytes: Literal[False],
135-
) -> str:
136-
...
133+
) -> str: ...
137134

138135
@staticmethod
139136
def get_content(
@@ -204,6 +201,8 @@ def execute(
204201
# xml is the default returnFormat for error messages
205202
elif self.fmt == "xml" or self.fmt is None:
206203
bad_request = "<error>" in str(content).lower()
204+
else:
205+
raise ValueError(f"Unsupported format { self.fmt }")
207206

208207
if bad_request:
209208
raise RedcapError(content)

tests/integration/conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test fixtures for integration tests only"""
2+
23
# pylint: disable=redefined-outer-name
34
from datetime import datetime
45
import os

tests/integration/test_long_project.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test suite for longitudinal REDCap Project against real REDCap server"""
2+
23
# pylint: disable=missing-function-docstring
34
import os
45

tests/integration/test_simple_project.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test suite for simple REDCap Project against real REDCap server"""
2+
23
# pylint: disable=missing-function-docstring
34
import os
45
from io import StringIO

tests/unit/conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test fixtures for unit tests only"""
2+
23
from typing import Dict, Generator
34

45
import pytest

0 commit comments

Comments
 (0)