Skip to content

Commit 8f37907

Browse files
committed
Pre-release v3.2.0rc3 matching GraphQL.js 16.0.0rc3
1 parent ad8d62c commit 8f37907

File tree

8 files changed

+25
-26
lines changed

8 files changed

+25
-26
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.0rc2
2+
current_version = 3.2.0rc3
33
commit = False
44
tag = False
55

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python: [3.6, 3.7, 3.8, 3.9, 3.10, pypy3]
11+
python: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
1212

1313
steps:
1414
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ a query language for APIs created by Facebook.
1212
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core/)
1313
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

15-
The current version 3.1.6 of GraphQL-core is up-to-date with GraphQL.js version 15.5.1.
15+
The current version 3.1.7 of GraphQL-core is up-to-date with GraphQL.js version 15.8.0.
1616

1717
An extensive test suite with over 2300 unit tests and 100% coverage comprises a
1818
replication of the complete test suite of GraphQL.js, making sure this port is

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
# version = '3.1'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.2.0rc2'
64+
version = release = '3.2.0rc3'
6565

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

poetry.lock

+15-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core"
3-
version = "3.2.0rc2"
3+
version = "3.2.0rc3"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""
@@ -50,8 +50,8 @@ pytest-asyncio = ">=0.16,<1"
5050
pytest-benchmark = "^3.4"
5151
pytest-cov = "^3.0"
5252
pytest-describe = "^2.0"
53-
pytest-timeout = "^1.4"
54-
typing-extensions = { version = "^3.10", python = "<3.8" }
53+
pytest-timeout = "^2.0"
54+
typing-extensions = { version = "^4.0", python = "<3.8" }
5555
black = [
5656
{version = "21.12b0", python = ">=3.6.2"},
5757
{version = "20.8b1", python = "<3.6.2"}

src/graphql/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
__all__ = ["version", "version_info", "version_js", "version_info_js"]
55

66

7-
version = "3.2.0rc2"
7+
version = "3.2.0rc3"
88

9-
version_js = "16.0.0rc2"
9+
version_js = "16.0.0rc3"
1010

1111

1212
_re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ deps =
5151
pytest-benchmark>=3.4,<4
5252
pytest-cov>=3,<4
5353
pytest-describe>=2,<3
54-
pytest-timeout>=1.4,<2
54+
pytest-timeout>=2,<3
5555
py36,py37: typing-extensions>=3.10,<4
5656
commands =
5757
pytest tests {posargs: --cov-report=term-missing --cov=graphql --cov=tests --cov-fail-under=100}

0 commit comments

Comments
 (0)