Skip to content

Commit 758fef1

Browse files
committed
Update README file
1 parent d32a992 commit 758fef1

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphQL-core 3
22

3-
GraphQL-core 3 is a Python 3.6+ port of [GraphQL.js](https://github.com/graphql/graphql-js),
3+
GraphQL-core 3 is a Python 3.7+ port of [GraphQL.js](https://github.com/graphql/graphql-js),
44
the JavaScript reference implementation for [GraphQL](https://graphql.org/),
55
a query language for APIs created by Facebook.
66

@@ -15,12 +15,12 @@ An extensive test suite with over 2600 unit tests and 100% coverage replicates t
1515
complete test suite of GraphQL.js, ensuring that this port is reliable and compatible
1616
with GraphQL.js.
1717

18-
The current stable version 3.2.6 of GraphQL-core is up-to-date with GraphQL.js
19-
version 16.8.2 and supports Python versions 3.6 to 3.13.
18+
The current stable version 3.2.7 of GraphQL-core is up-to-date with GraphQL.js
19+
version 16.9.0 and supports Python versions 3.7 to 3.14.
2020

2121
You can also try out the latest alpha version 3.3.0a11 of GraphQL-core,
2222
which is up-to-date with GraphQL.js version 17.0.0a5.
23-
This new minor version of GraphQL-core supports Python versions 3.7 to 3.14.
23+
This new minor version of GraphQL-core also supports Python versions 3.7 to 3.14.
2424

2525
Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js.
2626
Changes in the major version of GraphQL.js are reflected in the minor version of

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ reportInvalidTypeForm = false
286286
reportMissingModuleSource = false
287287
reportMissingTypeArgument = false
288288
reportReturnType = false
289+
reportTypedDictNotRequiredAccess = false
289290
reportUnknownArgumentType = false
290291
reportUnknownMemberType = false
291292
reportUnknownParameterType = false
@@ -314,14 +315,14 @@ addopts = "--benchmark-disable"
314315
python_classes = "PyTest*"
315316
# Handle all async fixtures and tests automatically by asyncio,
316317
asyncio_mode = "strict"
318+
# Use the functions scope as the default for asynchronous tests.
319+
asyncio_default_fixture_loop_scope = "function"
317320
# Set a timeout in seconds for aborting tests that run too long.
318321
timeout = "100"
319322
# Ignore config options not (yet) available in older Python versions.
320323
filterwarnings = "ignore::pytest.PytestConfigWarning"
321324
# All tests can be found in the tests directory.
322325
testpaths = ["tests"]
323-
# Use the functions scope as the default for asynchronous tests.
324-
asyncio_default_fixture_loop_scope = "function"
325326

326327
[build-system]
327328
requires = ["uv_build>=0.9,<0.10"]

0 commit comments

Comments
 (0)