Skip to content

Commit e263157

Browse files
committed
chore: dependency update
1 parent 07a321c commit e263157

File tree

3 files changed

+718
-533
lines changed

3 files changed

+718
-533
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
"Programming Language :: Python :: Implementation :: CPython",
2122
"License :: OSI Approved :: Apache Software License",
2223
"Environment :: Web Environment",
@@ -27,8 +28,8 @@ classifiers = [
2728
requires-python = ">= 3.10"
2829
dependencies = [
2930
"click>=8.1.7",
30-
"scim2-client>=0.4.3",
31-
"scim2-tester[httpx]>=0.2.0",
31+
"scim2-client>=0.7.1",
32+
"scim2-tester[httpx]>=0.2.5",
3233
"sphinx-click-rst-to-ansi-formatter>=0.1.0",
3334
"pydanclick>=0.4.0",
3435
"pygments>=2.18.0",
@@ -127,6 +128,7 @@ env_list = [
127128
"py311",
128129
"py312",
129130
"py313",
131+
"py314",
130132
"minversions",
131133
"doc",
132134
"coverage",

scim2_cli/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,13 @@ def is_field_acceptable(context, model, field_name) -> bool:
100100

101101

102102
def unacceptable_fields(context, model):
103-
return [
103+
excluded = [
104104
field_name
105105
for field_name in model.model_fields
106106
if not is_field_acceptable(context, model, field_name)
107107
]
108+
excluded.append("schemas")
109+
return excluded
108110

109111

110112
def exception_to_click_error(exception):

0 commit comments

Comments
 (0)