Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add type annotations for peewee #4776

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
511e3ea
Add type annotations for `peewee`
Nov 18, 2020
7bbba59
Merge branch 'master' into peewee
Dec 1, 2020
b7eebcd
More work on annotations
Dec 1, 2020
1f7af9f
Commit final parts of first draft of the PR.
Jan 16, 2021
92dff01
Incremental fixes
Jan 26, 2021
0d047c4
Merge branch 'master' into peewee
dargueta Apr 14, 2021
2fa7292
Add stuff, reformat according to Black
Nov 17, 2021
41eedc7
Merge branch 'master' into peewee
Nov 17, 2021
fa81e48
A few more tweaks to int/float confusion
Nov 17, 2021
04ed2a9
Merge branch 'master' into peewee
Feb 20, 2022
9175536
Hopefully the last of the linter fixes, thanks to @pylipp
Feb 20, 2022
e3acec8
Merge branch 'master' into peewee
AlexWaygood Apr 18, 2022
3153594
Fix location of new stub file
AlexWaygood Apr 18, 2022
30d6289
Fix many lint errors
AlexWaygood Apr 18, 2022
d2a9556
Add to stricter-pyright ignorelist
AlexWaygood Apr 18, 2022
8adc6b0
Fix a few obvious-ish things
Akuli Apr 25, 2022
12f0e6f
use _typeshed.Self when appropriate
Akuli Apr 25, 2022
18795ac
Merge branch 'master' into peewee
AlexWaygood May 18, 2022
e8e4b80
Merge branch 'master' into peewee
AlexWaygood May 19, 2022
9d44ac6
More lint fixes
AlexWaygood May 19, 2022
0504beb
Merge branch 'master' into peewee
AlexWaygood May 19, 2022
9a7c5f9
Swap a few 'incomplete' comments for `_typeshed.Incomplete`
AlexWaygood Jun 15, 2022
5011f56
Fix `TFunc`-related issues
AlexWaygood Jun 15, 2022
719dd62
Nit: Rename several `TypeVar`s to use suffixes instead of prefixes
AlexWaygood Jun 15, 2022
fda102c
Add some missing type parameters, use some more `Incomplete` where I'…
AlexWaygood Jun 15, 2022
45fb0c2
Fix a few mypy complaints, falling back to `Incomplete` when I'm unsure
AlexWaygood Jun 15, 2022
3e31653
Mark more things as incomplete
AlexWaygood Jun 19, 2022
589ad8d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 19, 2022
a63e648
More fixes
AlexWaygood Jun 19, 2022
e86cbd2
Merge
AlexWaygood Jun 19, 2022
0e80802
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 19, 2022
503a71a
Merge branch 'master' into peewee
AlexWaygood Oct 3, 2022
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
1 change: 1 addition & 0 deletions pyrightconfig.stricter.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"stubs/openpyxl",
"stubs/Pillow",
"stubs/paramiko",
"stubs/peewee",
"stubs/prettytable",
"stubs/protobuf",
"stubs/google-cloud-ndb",
Expand Down
2 changes: 2 additions & 0 deletions stubs/peewee/METADATA.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version = "3.14.10.*"
python2 = true
AlexWaygood marked this conversation as resolved.
Show resolved Hide resolved
Loading