Skip to content

Commit 4d6ae9f

Browse files
palangokonradkonrad
authored andcommitted
Add support for python 3.9
1 parent 023ce57 commit 4d6ae9f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
python-version: [3.7, 3.8]
15+
python-version: [3.7, 3.8, 3.9]
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -52,7 +52,7 @@ jobs:
5252
- name: Test
5353
run: |
5454
source ./venv/bin/activate
55-
pytest --cov=./ raiden_contracts/tests/ -v -n 4 --cov-config setup.cfg
55+
pytest --cov=./ raiden_contracts/tests/ -v -n 2 --cov-config setup.cfg
5656
- name: Codecov
5757
run: |
5858
source ./venv/bin/activate

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Raiden Network Smart Contracts
1212
Prerequisites
1313
-------------
1414

15-
- Python 3.7 or 3.8
15+
- Python 3.7, 3.8 or 3.9
1616
- https://pip.pypa.io/en/stable/
1717

1818
Installation

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ def run(self) -> None: # pylint: disable=no-self-use
9999
"Programming Language :: Python :: 3",
100100
"Programming Language :: Python :: 3.7",
101101
"Programming Language :: Python :: 3.8",
102+
"Programming Language :: Python :: 3.9",
102103
],
103104
"entry_points": {"console_scripts": ["deploy = raiden_contracts.deploy.__main__:main"]},
104105
"cmdclass": {

0 commit comments

Comments
 (0)