Skip to content

Commit 76d872a

Browse files
committed
Prepare next patch release
Bump version number and remove duplicate README.rst
1 parent 476ade0 commit 76d872a

File tree

4 files changed

+7
-66
lines changed

4 files changed

+7
-66
lines changed

README.rst

Lines changed: 0 additions & 60 deletions
This file was deleted.

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[flake8]
2-
exclude = tests,scripts,setup.py,docs
3-
max-line-length = 160
2+
exclude = docs
3+
max-line-length = 88
44

55
[isort]
66
known_first_party=graphql_server

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
setup(
66
name="graphql-server-core",
7-
version="1.1.1",
7+
version="1.1.2",
88
description="GraphQL Server tools for powering your server",
9-
long_description=open("README.rst").read(),
9+
long_description=open("README.md").read(),
10+
long_description_content_type="text/markdown",
1011
url="https://github.com/graphql-python/graphql-server-core",
1112
download_url="https://github.com/graphql-python/graphql-server-core/releases",
1213
author="Syrus Akbary",
@@ -30,7 +31,7 @@
3031
keywords="api graphql protocol rest",
3132
packages=find_packages(exclude=["tests"]),
3233
install_requires=required_packages,
33-
tests_require=["pytest>=3.0"],
34+
tests_require=["pytest>=3.0,<4"],
3435
include_package_data=True,
3536
zip_safe=False,
3637
platforms="any",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ commands =
2828
basepython=python3.7
2929
deps =
3030
isort
31-
graphql-core>=2.1
31+
graphql-core>=2.1,<3
3232
commands =
3333
isort -rc graphql_server/ tests/
3434

0 commit comments

Comments
 (0)