Skip to content

Commit

Permalink
Pre-release v3.2.0rc3 matching GraphQL.js 16.0.0rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Dec 12, 2021
1 parent ad8d62c commit 8f37907
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.2.0rc2
current_version = 3.2.0rc3
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, 3.10, pypy3]
python: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ a query language for APIs created by Facebook.
[![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/)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

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

An extensive test suite with over 2300 unit tests and 100% coverage comprises a
replication of the complete test suite of GraphQL.js, making sure this port is
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
# version = '3.1'
# The full version, including alpha/beta/rc tags.
version = release = '3.2.0rc2'
version = release = '3.2.0rc3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
31 changes: 15 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "graphql-core"
version = "3.2.0rc2"
version = "3.2.0rc3"
description = """
GraphQL-core is a Python port of GraphQL.js,
the JavaScript reference implementation for GraphQL."""
Expand Down Expand Up @@ -50,8 +50,8 @@ pytest-asyncio = ">=0.16,<1"
pytest-benchmark = "^3.4"
pytest-cov = "^3.0"
pytest-describe = "^2.0"
pytest-timeout = "^1.4"
typing-extensions = { version = "^3.10", python = "<3.8" }
pytest-timeout = "^2.0"
typing-extensions = { version = "^4.0", python = "<3.8" }
black = [
{version = "21.12b0", python = ">=3.6.2"},
{version = "20.8b1", python = "<3.6.2"}
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
__all__ = ["version", "version_info", "version_js", "version_info_js"]


version = "3.2.0rc2"
version = "3.2.0rc3"

version_js = "16.0.0rc2"
version_js = "16.0.0rc3"


_re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ deps =
pytest-benchmark>=3.4,<4
pytest-cov>=3,<4
pytest-describe>=2,<3
pytest-timeout>=1.4,<2
pytest-timeout>=2,<3
py36,py37: typing-extensions>=3.10,<4
commands =
pytest tests {posargs: --cov-report=term-missing --cov=graphql --cov=tests --cov-fail-under=100}

0 comments on commit 8f37907

Please sign in to comment.