Skip to content

Commit

Permalink
Add support for python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
palango authored and konradkonrad committed May 6, 2021
1 parent 023ce57 commit 4d6ae9f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
python-version: [3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Test
run: |
source ./venv/bin/activate
pytest --cov=./ raiden_contracts/tests/ -v -n 4 --cov-config setup.cfg
pytest --cov=./ raiden_contracts/tests/ -v -n 2 --cov-config setup.cfg
- name: Codecov
run: |
source ./venv/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Raiden Network Smart Contracts
Prerequisites
-------------

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

Installation
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ def run(self) -> None: # pylint: disable=no-self-use
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
"entry_points": {"console_scripts": ["deploy = raiden_contracts.deploy.__main__:main"]},
"cmdclass": {
Expand Down

0 comments on commit 4d6ae9f

Please sign in to comment.