strawberry-graphql 0.260.4__py3-none-any.whl → 0.261.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- strawberry/annotation.py +3 -1
- {strawberry_graphql-0.260.4.dist-info → strawberry_graphql-0.261.1.dist-info}/METADATA +4 -4
- {strawberry_graphql-0.260.4.dist-info → strawberry_graphql-0.261.1.dist-info}/RECORD +6 -6
- {strawberry_graphql-0.260.4.dist-info → strawberry_graphql-0.261.1.dist-info}/LICENSE +0 -0
- {strawberry_graphql-0.260.4.dist-info → strawberry_graphql-0.261.1.dist-info}/WHEEL +0 -0
- {strawberry_graphql-0.260.4.dist-info → strawberry_graphql-0.261.1.dist-info}/entry_points.txt +0 -0
strawberry/annotation.py
CHANGED
@@ -197,7 +197,9 @@ class StrawberryAnnotation:
|
|
197
197
|
types = get_args(evaled_type)
|
198
198
|
non_optional_types = tuple(
|
199
199
|
filter(
|
200
|
-
lambda x: x is not type(None)
|
200
|
+
lambda x: x is not type(None)
|
201
|
+
and x is not type(UNSET)
|
202
|
+
and x != type[UNSET],
|
201
203
|
types,
|
202
204
|
)
|
203
205
|
)
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: strawberry-graphql
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.261.1
|
4
4
|
Summary: A library for creating GraphQL APIs
|
5
5
|
License: MIT
|
6
6
|
Keywords: graphql,api,rest,starlette,async
|
7
7
|
Author: Patrick Arminio
|
8
8
|
Author-email: patrick.arminio@gmail.com
|
9
|
-
Requires-Python: >=3.9
|
9
|
+
Requires-Python: >=3.9
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -41,9 +41,9 @@ Requires-Dist: chalice (>=1.22,<2.0) ; extra == "chalice"
|
|
41
41
|
Requires-Dist: channels (>=3.0.5) ; extra == "channels"
|
42
42
|
Requires-Dist: fastapi (>=0.65.2) ; extra == "fastapi"
|
43
43
|
Requires-Dist: flask (>=1.1) ; extra == "flask"
|
44
|
-
Requires-Dist: graphql-core (>=3.2.0,<3.4.0)
|
44
|
+
Requires-Dist: graphql-core (>=3.2.0,<3.4.0) ; python_version >= "3.9" and python_version < "4.0"
|
45
45
|
Requires-Dist: libcst (>=0.4.7) ; extra == "debug" or extra == "debug-server" or extra == "cli"
|
46
|
-
Requires-Dist: litestar (>=2) ; extra == "litestar"
|
46
|
+
Requires-Dist: litestar (>=2) ; (python_version >= "3.10" and python_version < "4.0") and (extra == "litestar")
|
47
47
|
Requires-Dist: opentelemetry-api (<2) ; extra == "opentelemetry"
|
48
48
|
Requires-Dist: opentelemetry-sdk (<2) ; extra == "opentelemetry"
|
49
49
|
Requires-Dist: pydantic (>1.6.1) ; extra == "pydantic"
|
@@ -4,7 +4,7 @@ strawberry/aiohttp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
4
4
|
strawberry/aiohttp/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
5
5
|
strawberry/aiohttp/test/client.py,sha256=8FKZTnvawxYpgEICOri-34O3wHRHLhRpjH_Ktp2EupQ,1801
|
6
6
|
strawberry/aiohttp/views.py,sha256=JXYd_qO_LD4QbRJ7iAnZbEsezwvPOmTujTGNAb75bRU,7885
|
7
|
-
strawberry/annotation.py,sha256=
|
7
|
+
strawberry/annotation.py,sha256=FYoUNz857yt3Hewm8bYFmMLpG7dTdKpc4j9nBGsv40k,13038
|
8
8
|
strawberry/asgi/__init__.py,sha256=55tsJmqIPlQgeScDUQuADalLlN5ymdHOeFHWzyII7aY,8167
|
9
9
|
strawberry/asgi/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
10
10
|
strawberry/asgi/test/client.py,sha256=kp2O5znHWuAB5VVYO8p4XPSTEDDXBSjNz5WHqW0r6GM,1473
|
@@ -228,8 +228,8 @@ strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,7
|
|
228
228
|
strawberry/utils/operation.py,sha256=SSXxN-vMqdHO6W2OZtip-1z7y4_A-eTVFdhDvhKeLCk,1193
|
229
229
|
strawberry/utils/str_converters.py,sha256=-eH1Cl16IO_wrBlsGM-km4IY0IKsjhjnSNGRGOwQjVM,897
|
230
230
|
strawberry/utils/typing.py,sha256=Ux0Hl46lhuXvOKK-C5hj6nlz3zDn8P4CUGH2nUVD2vU,13373
|
231
|
-
strawberry_graphql-0.
|
232
|
-
strawberry_graphql-0.
|
233
|
-
strawberry_graphql-0.
|
234
|
-
strawberry_graphql-0.
|
235
|
-
strawberry_graphql-0.
|
231
|
+
strawberry_graphql-0.261.1.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
|
232
|
+
strawberry_graphql-0.261.1.dist-info/METADATA,sha256=Bb7IbpTYKZkZD_9kU6ZG3HxTJbWD0xRfnokP2UsoVGY,7647
|
233
|
+
strawberry_graphql-0.261.1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
234
|
+
strawberry_graphql-0.261.1.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
|
235
|
+
strawberry_graphql-0.261.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{strawberry_graphql-0.260.4.dist-info → strawberry_graphql-0.261.1.dist-info}/entry_points.txt
RENAMED
File without changes
|