Skip to content

Commit

Permalink
Support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
emlove committed Mar 16, 2021
1 parent b839a42 commit 8c68b20
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -13,7 +13,7 @@ This is a compact and simple JSON-RPC websocket client implementation for asynci
Main Features
-------------

* Python 3.6, 3.7 & 3.8 compatible
* Python 3.6, 3.7, 3.8 & 3.9 compatible
* Supports nested namespaces (eg. `app.users.getUsers()`)
* 100% test coverage

Expand Down
14 changes: 7 additions & 7 deletions requirements-test.txt
@@ -1,11 +1,11 @@
flake8==3.7.8
coverage==5.3
coveralls==2.2.0
jsonrpc-base>=1.1.0
coverage==5.5
coveralls==3.0.1
jsonrpc-base==1.1.0
aiohttp>=3.0.0
pytest-aiohttp==0.1.3
pytest==6.2.1
pytest-cov==2.10.1
pytest-aiohttp==0.3.0
pytest==6.2.2
pytest-cov==2.11.1
pytest-asyncio==0.14.0
asynctest==0.13.0
tox==3.14.0
tox==3.23.0
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -20,7 +20,7 @@
long_description_content_type='text/x-rst',
long_description=open('README.rst').read(),
install_requires=[
'jsonrpc-base>=1.1.0',
'jsonrpc-base==1.1.0',
'aiohttp>=3.0.0',
],
classifiers=[
Expand All @@ -32,6 +32,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],

)
6 changes: 6 additions & 0 deletions tox.ini
Expand Up @@ -3,6 +3,7 @@ envlist =
py36,
py37,
py38,
py39,
flake8,

[testenv]
Expand All @@ -28,6 +29,11 @@ basepython = python3.8
deps =
{[testenv]deps}

[testenv:py39]
basepython = python3.9
deps =
{[testenv]deps}

[testenv:flake8]
basepython = python
commands = flake8 jsonrpc_websocket tests.py

0 comments on commit 8c68b20

Please sign in to comment.