Skip to content

Commit 9ae48fe

Browse files
authored
Add Python 3.9 to Test Matrix (python-telegram-bot#2132)
* Add Py 3.9 to tests * update setup-python action
1 parent 6af6648 commit 9ae48fe

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{matrix.os}}
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8]
18+
python-version: [3.6, 3.7, 3.8, 3.9]
1919
os: [ubuntu-latest, windows-latest]
2020
include:
2121
- os: ubuntu-latest
@@ -31,7 +31,7 @@ jobs:
3131
run:
3232
git submodule update --init --recursive
3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v1
34+
uses: actions/setup-python@v2
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Install dependencies

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,5 @@ def requirements():
6464
'Programming Language :: Python :: 3.6',
6565
'Programming Language :: Python :: 3.7',
6666
'Programming Language :: Python :: 3.8',
67+
'Programming Language :: Python :: 3.9',
6768
],)

0 commit comments

Comments
 (0)