Skip to content

Commit a285196

Browse files
committed
Remove references to graphql-core-next
GraphQL-core-next has been replaced by GraphQL-core v3. Also require v3 final instead of v3 alpha.
1 parent dfdb635 commit a285196

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ as [tests](tests) in this repository.
3939
A good way to get started with this repository is to walk through that documentation
4040
and the corresponding tests in this library together.
4141

42-
## Using Relay Library for GraphQL Python (graphql-core-next)
42+
## Using Relay Library for GraphQL Python (graphql-core)
4343

4444
Install Relay Library for GraphQL Python
4545

4646
```sh
47-
pip install graphql-core-next
47+
pip install graphql-core
4848
pip install graphql-relay
4949
```
5050

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "graphql-relay"
33
version = "3.0.0"
44
description = """
5-
Relay library for graphql-core-next"""
5+
Relay library for graphql-core"""
66
license="MIT"
77
authors = [
88
"Syrus Akbary <[email protected]>",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
setup(
1111
name="graphql-relay",
1212
version=version,
13-
description="Relay library for graphql-core-next",
13+
description="Relay library for graphql-core",
1414
long_description=readme,
1515
long_description_content_type="text/markdown",
1616
keywords="graphql relay api",
@@ -29,7 +29,7 @@
2929
"Programming Language :: Python :: 3.8",
3030
"Programming Language :: Python :: Implementation :: PyPy",
3131
],
32-
install_requires=["graphql-core>=3.0.0a0"],
32+
install_requires=["graphql-core>=3.0.0"],
3333
python_requires=">=3.6,<4",
3434
packages=find_packages("src"),
3535
package_dir={"": "src"},

0 commit comments

Comments
 (0)