Skip to content

Commit 7783a37

Browse files
authored
🧪 TEST: Against Python 3.9 (#63)
1 parent ca6269e commit 7783a37

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313

1414
- name: Set up Python 3.8
15-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v2
1616
with:
1717
python-version: 3.8
1818

@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/checkout@v2
5555

5656
- name: Set up Python 3.8
57-
uses: actions/setup-python@v1
57+
uses: actions/setup-python@v2
5858
with:
5959
python-version: 3.8
6060

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Set up Python 3.8
22-
uses: actions/setup-python@v1
22+
uses: actions/setup-python@v2
2323
with:
2424
python-version: 3.8
2525
- uses: pre-commit/[email protected]
@@ -29,12 +29,12 @@ jobs:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
32-
python-version: [3.6, 3.7, 3.8]
32+
python-version: [3.6, 3.7, 3.8, 3.9]
3333

3434
steps:
3535
- uses: actions/checkout@v2
3636
- name: Set up Python ${{ matrix.python-version }}
37-
uses: actions/setup-python@v1
37+
uses: actions/setup-python@v2
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install dependencies
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v2
6161

6262
- name: Set up Python 3.8
63-
uses: actions/setup-python@v1
63+
uses: actions/setup-python@v2
6464
with:
6565
python-version: 3.8
6666

@@ -89,7 +89,7 @@ jobs:
8989
- name: Checkout source
9090
uses: actions/checkout@v2
9191
- name: Set up Python 3.7
92-
uses: actions/setup-python@v1
92+
uses: actions/setup-python@v2
9393
with:
9494
python-version: 3.7
9595
- name: Build package

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def get_version():
3232
"Programming Language :: Python :: 3.6",
3333
"Programming Language :: Python :: 3.7",
3434
"Programming Language :: Python :: 3.8",
35+
"Programming Language :: Python :: 3.9",
3536
"Programming Language :: Python :: Implementation :: CPython",
3637
"Programming Language :: Python :: Implementation :: PyPy",
3738
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)