Skip to content

Commit 60e9171

Browse files
authored
chore: stable Python 3.9 support and bump version (#71)
1 parent e39398a commit 60e9171

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.6", "3.7", "3.8", "3.9-dev"]
11+
python-version: ["3.6", "3.7", "3.8", "3.9"]
1212
os: [ubuntu-latest, windows-latest]
1313
exclude:
1414
- os: windows-latest
1515
python-version: "3.6"
1616
- os: windows-latest
1717
python-version: "3.7"
1818
- os: windows-latest
19-
python-version: "3.9-dev"
19+
python-version: "3.9"
2020

2121
steps:
2222
- uses: actions/checkout@v2

graphql_server/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__all__ = ["version", "version_info"]
55

66

7-
version = "3.0.0b1"
7+
version = "3.0.0b2"
88

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

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,13 @@
6363
author_email="me@syrusakbary.com",
6464
license="MIT",
6565
classifiers=[
66-
"Development Status :: 5 - Production/Stable",
66+
"Development Status :: 3 - Alpha",
6767
"Intended Audience :: Developers",
6868
"Topic :: Software Development :: Libraries",
6969
"Programming Language :: Python :: 3.6",
7070
"Programming Language :: Python :: 3.7",
7171
"Programming Language :: Python :: 3.8",
72+
"Programming Language :: Python :: 3.9",
7273
"License :: OSI Approved :: MIT License",
7374
],
7475
keywords="api graphql protocol rest",

tox.ini

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
[tox]
22
envlist =
33
black,flake8,import-order,mypy,manifest,
4-
py{36,37,38,39-dev}
4+
py{36,37,38,39}
55
; requires = tox-conda
66

77
[gh-actions]
88
python =
99
3.6: py36
1010
3.7: py37
1111
3.8: py38
12-
3.9: py39-dev
12+
3.9: py39
1313

1414
[testenv]
15+
conda_channels = conda-forge
1516
passenv = *
1617
setenv =
1718
PYTHONPATH = {toxinidir}
@@ -21,7 +22,8 @@ whitelist_externals =
2122
python
2223
commands =
2324
pip install -U setuptools
24-
pytest tests --cov-report=term-missing --cov=graphql_server {posargs}
25+
py{36,37,39}: pytest tests {posargs}
26+
py{38}: pytest tests --cov-report=term-missing --cov=graphql_server {posargs}
2527

2628
[testenv:black]
2729
basepython = python3.8

0 commit comments

Comments
 (0)