Skip to content

Commit d94b041

Browse files
authored
Merge pull request #2 from tofarr/vs_code_and_python_3_12_support
VSCode and Python 3.12 support
2 parents 5b80c97 + 46ee3ef commit d94b041

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,5 @@ dmypy.json
138138
cython_debug/
139139

140140
/.idea
141+
/.vscode
141142
*.DS_Store

schemey/factory/dataclass_schema_factory.py

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def from_json(
101101
p = params_with_default
102102
else:
103103
p = params
104+
# pylint: disable=E3701
104105
field = dataclasses.field(
105106
default=default, metadata={"schemey": field_schema}
106107
)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"pytest~=7.2",
2121
"pytest-cov~=4.0",
2222
"pytest-xdist~=3.2",
23-
"pylint~=2.17",
23+
"pylint~=3.0",
2424
],
2525
},
2626
setup_requires=["setuptools-git-versioning"],

0 commit comments

Comments
 (0)