Skip to content

Commit 76975cf

Browse files
committed
Bump version and update dependencies
1 parent 6d1d224 commit 76975cf

File tree

7 files changed

+210
-157
lines changed

7 files changed

+210
-157
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.3.0a7
2+
current_version = 3.3.0a9
33
commit = False
44
tag = False
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ with GraphQL.js.
1818
The current stable version 3.2.6 of GraphQL-core is up-to-date with GraphQL.js
1919
version 16.8.2 and supports Python versions 3.6 to 3.13.
2020

21-
You can also try out the latest alpha version 3.3.0a8 of GraphQL-core,
21+
You can also try out the latest alpha version 3.3.0a9 of GraphQL-core,
2222
which is up-to-date with GraphQL.js version 17.0.0a3.
2323
Please note that this new minor version of GraphQL-core does not support
2424
Python 3.6 anymore.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
# version = '3.3'
6262
# The full version, including alpha/beta/rc tags.
63-
version = release = "3.3.0a8"
63+
version = release = "3.3.0a9"
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

poetry.lock

Lines changed: 201 additions & 148 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core"
3-
version = "3.3.0a8"
3+
version = "3.3.0a9"
44
description = """\
55
GraphQL-core is a Python port of GraphQL.js,\
66
the JavaScript reference implementation for GraphQL."""
@@ -85,9 +85,9 @@ tox = [
8585
optional = true
8686

8787
[tool.poetry.group.lint.dependencies]
88-
ruff = ">=0.11,<0.12"
88+
ruff = ">=0.12,<0.13"
8989
mypy = [
90-
{ version = "^1.15", python = ">=3.9" },
90+
{ version = "^1.16", python = ">=3.9" },
9191
{ version = "~1.14", python = ">=3.8,<3.9" },
9292
{ version = "~1.4", python = "<3.8" }
9393
]

src/graphql/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__all__ = ["version", "version_info", "version_info_js", "version_js"]
99

1010

11-
version = "3.3.0a8"
11+
version = "3.3.0a9"
1212

1313
version_js = "17.0.0a3"
1414

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ python =
1818

1919
[testenv:ruff]
2020
basepython = python3.12
21-
deps = ruff>=0.11,<0.12
21+
deps = ruff>=0.12,<0.13
2222
commands =
2323
ruff check src tests
2424
ruff format --check src tests
2525

2626
[testenv:mypy]
2727
basepython = python3.12
2828
deps =
29-
mypy>=1.15,<2
29+
mypy>=1.16,<2
3030
pytest>=8.3,<9
3131
commands =
3232
mypy src tests

0 commit comments

Comments
 (0)