Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

feat: Py3.11 #19

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 113 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,34 +1,123 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
test.py
# custom ignores
examples/
*.env
*.secrets
**/.payload

# dependencies
/node_modules
/.pnp
.pnp.js
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# testing
/coverage
# C extensions
*.so

# production
/build
# Distribution / packaging
.Python
build/
develop-eggs/
node_modules/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Installer logs
pip-log.txt
pip-delete-this-directory.txt

.env*
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
**/coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
.DS_Store
node_modules
dist
.static_storage/
.media/
local_settings.py

.mypy_cache/
# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Pipenv
Pipfile.lock

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

#PyCharm
.idea
/feat_aws_iot/_version.py
/pip-wheel-metadata/

# vscode
.vscode/
.vscode/*
4 changes: 2 additions & 2 deletions codegen.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
schema: schema.graphql
schema: examples/schema.graphql
generates:
./test.py:
examples/schema.py:
plugins:
- dist
3 changes: 3 additions & 0 deletions dist/config.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { RawConfig } from '@graphql-codegen/visitor-plugin-common';
export interface PydanticPluginRawConfig extends RawConfig {
}
Loading