Skip to content

Commit

Permalink
Merge pull request #5 from tofarr/python_3_12_and_vscode
Browse files Browse the repository at this point in the history
Bumped dependency for python 3.12 and ignoring .vscode directory
  • Loading branch information
tofarr authored Nov 6, 2023
2 parents 640b745 + 35a998d commit 8f1c3db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ dmypy.json
cython_debug/

*.idea
/.vscode
*.DS_Storage

serverless_servey/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ def create_input(
params[f.name] = f.default
elif f.default_factory is not MISSING:
type_ = Optional[type_]
# pylint: disable=E3701
params[f.name] = dataclasses.field(default_factory=f.default_factory)
annotations[f.name] = schema_factory.get_input(type_)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"pytest~=7.2",
"pytest-cov~=4.0",
"pytest-xdist~=3.2",
"pylint~=2.17",
"pylint~=3.0",
],
"server": [
"starlette~=0.19",
Expand Down

0 comments on commit 8f1c3db

Please sign in to comment.