Skip to content

Commit c82b87c

Browse files
authored
Don't run Mypy tests on Python 3.9 (#28)
* Fix typo in link to keepachangelog.com * Python 3.9 doesn't seem to support mypy properly yet
1 parent 3300b10 commit c82b87c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ jobs:
3030
docker:
3131
- image: circleci/python:3.8
3232

33-
"test-py39":
33+
"test-py39-no-mypy":
3434
<<: *shared
35+
environment:
36+
TOX_SKIP_ENV: mypy
3537
docker:
3638
- image: circleci/python:3.9-rc
3739

@@ -43,4 +45,4 @@ workflows:
4345
- "test-py36"
4446
- "test-py37"
4547
- "test-py38"
46-
- "test-py39"
48+
- "test-py39-no-mypy"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog1.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

88
## [Unreleased]

0 commit comments

Comments
 (0)