Skip to content

Commit dfdb635

Browse files
committed
Prepare 3.0.0 release
1 parent f75987b commit dfdb635

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.bumpversion.cfg

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

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ matrix:
33
include:
44
- name: Code quality tests
55
env: TOXENV=flake8,mypy
6-
python: 3.7
6+
python: 3.8
77
dist: xenial
88
sudo: true
99
- name: Unit tests with Python 3.8

mypy.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[mypy]
2-
python_version = 3.7
2+
python_version = 3.8
33
warn_redundant_casts = true
44
warn_unused_ignores = True

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-relay"
3-
version = "3.0.0a2"
3+
version = "3.0.0"
44
description = """
55
Relay library for graphql-core-next"""
66
license="MIT"
@@ -30,7 +30,7 @@ packages = [
3030

3131
[tool.poetry.dependencies]
3232
python = "^3.6"
33-
graphql-core = "^3.0.0a0"
33+
graphql-core = "^3.0"
3434

3535
[tool.poetry.dev-dependencies]
3636
pytest = "^5.3"

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"Programming Language :: Python :: 3",
2727
"Programming Language :: Python :: 3.6",
2828
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
2930
"Programming Language :: Python :: Implementation :: PyPy",
3031
],
3132
install_requires=["graphql-core>=3.0.0a0"],

src/graphql_relay/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__all__ = ["version", "version_info", "version_js", "version_info_js"]
55

6-
version = "3.0.0a2"
6+
version = "3.0.0"
77

88
version_js = "0.6.0"
99

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
envlist = py{36,37,38}, flake8, mypy, manifest
33

44
[testenv:black]
5-
basepython = python3.7
5+
basepython = python3.8
66
deps = black==19.10b0
77
commands =
88
black src tests setup.py --check
99

1010
[testenv:flake8]
11-
basepython = python3.7
11+
basepython = python3.8
1212
deps = flake8>=3.7,<4
1313
commands =
1414
flake8 src tests setup.py
1515

1616
[testenv:mypy]
17-
basepython = python3.7
17+
basepython = python3.8
1818
deps = mypy>=0.761,<0.770
1919
commands =
2020
mypy src tests
2121

2222
[testenv:manifest]
23-
basepython = python3.7
23+
basepython = python3.8
2424
deps = check-manifest>=0.40,<1
2525
commands =
2626
check-manifest -v

0 commit comments

Comments
 (0)