Skip to content

Commit

Permalink
Add python 3.9 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Dec 29, 2020
1 parent 71db8c2 commit 3494d36
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
- image: python:3.8-slim
<<: *test-template

py39:
docker:
- image: python:3.9-slim
<<: *test-template

package-and-publish:
machine: true
working_directory: ~/Buku
Expand Down Expand Up @@ -99,6 +104,7 @@ workflows:
- py36
- py37
- py38
- py39

nightly:
triggers:
Expand Down

3 comments on commit 3494d36

@jarun
Copy link
Owner Author

@jarun jarun commented on 3494d36 Dec 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rachmadaniHaryono can you check the following lint issue for python 3.9:

E1136: Value 'Optional' is unsubscriptable (unsubscriptable-object)

@jarun
Copy link
Owner Author

@jarun jarun commented on 3494d36 Dec 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failing on Ci.

@rachmadaniHaryono
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

related to this pylint-dev/pylint#3882

one example to fix it temporarily is to add this error to exception list learnitall/glo@43a9167

Please sign in to comment.