Skip to content

Commit

Permalink
Merge pull request #78 from kkocsis/master
Browse files Browse the repository at this point in the history
Run tests with Python 3.8 and 3.9
  • Loading branch information
csizmaziakiki authored Jun 13, 2023
2 parents 1bc734a + f0025a0 commit 022eb70
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ workflows:
- test-2.7
- test-3.6
- test-3.7
- test-3.8
- test-3.9
jobs:
test-2.7: &test-template
filters:
Expand Down Expand Up @@ -40,3 +42,17 @@ jobs:
- image: circleci/python:3.7
environment:
TRAVIS_PYTHON_VERSION: 3.7

test-3.8:
<<: *test-template
docker:
- image: circleci/python:3.8
environment:
TRAVIS_PYTHON_VERSION: 3.8

test-3.9:
<<: *test-template
docker:
- image: circleci/python:3.9
environment:
TRAVIS_PYTHON_VERSION: 3.9

0 comments on commit 022eb70

Please sign in to comment.