File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
strategy :
14
14
matrix :
15
- python-version : [3.7, 3.8]
15
+ python-version : [3.7, 3.8, 3.9 ]
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
52
52
- name : Test
53
53
run : |
54
54
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
56
56
- name : Codecov
57
57
run : |
58
58
source ./venv/bin/activate
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Raiden Network Smart Contracts
12
12
Prerequisites
13
13
-------------
14
14
15
- - Python 3.7 or 3.8
15
+ - Python 3.7, 3.8 or 3.9
16
16
- https://pip.pypa.io/en/stable/
17
17
18
18
Installation
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ def run(self) -> None: # pylint: disable=no-self-use
99
99
"Programming Language :: Python :: 3" ,
100
100
"Programming Language :: Python :: 3.7" ,
101
101
"Programming Language :: Python :: 3.8" ,
102
+ "Programming Language :: Python :: 3.9" ,
102
103
],
103
104
"entry_points" : {"console_scripts" : ["deploy = raiden_contracts.deploy.__main__:main" ]},
104
105
"cmdclass" : {
You can’t perform that action at this time.
0 commit comments