10000 Add tests and explicit support for Python 3.9 (#16) · realpython/codetiming@0c3e07e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0c3e07e

Browse files
authored
Add tests and explicit support for Python 3.9 (#16)
1 parent d618696 commit 0c3e07e

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

.circleci/config.yml

Lines changed: 18 additions & 13 deletions
10000
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
version: 2
22

33
shared: &shared
4-
working_directory: ~/circleci-codetiming
5-
steps:
6-
- checkout
7-
- run:
8-
name: Install
9-
command: |
10-
python -m pip install flit --user
11-
python -m flit install --deps=develop
12-
- run:
13-
name: Test
14-
command: |
15-
python -m tox --recreate
4+
working_directory: ~/circleci-codetiming
5+
steps:
6+
- checkout
7+
- run:
8+
name: Install
9+
command: |
10+
python -m pip install flit --user
11+
python -m flit install --deps=develop
12+
- run:
13+
name: Test
14+
command: |
15+
python -m tox --recreate
1616
1717
jobs:
1818
"test-py36":
@@ -28,8 +28,12 @@ jobs:
2828
"test-py38":
2929
<<: *shared
3030
docker:
31-
- image: circleci/python:3.8-rc
31+
- image: circleci/python:3.8
3232

33+
"test-py39":
34+
<<: *shared
35+
docker:
36+
- image: circleci/python:3.9-rc
3337

3438
workflows:
3539
version: 2
@@ -39,3 +43,4 @@ workflows:
3943
- "test-py36"
4044
- "test-py37"
4145
- "test-py38"
46+
- "test-py39"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.6",
2020
"Programming Language :: Python :: 3.7",
2121
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
2223
"Topic :: Education",
2324
"Topic :: Software Development :: Libraries :: Python Modules",
2425
"Topic :: System :: Monitoring",

0 commit comments

Comments
 (0)
0