Skip to content

Commit

Permalink
Test with Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
davidesarra committed Apr 4, 2021
1 parent bbb5be7 commit 535a22d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dev dependencies
- name: Install lint dependencies
run: pip install -r requirements/lint.txt
- name: Check order of Python imports
run: isort --check-only --diff --quiet .
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"

before_install:
- pip install codecov
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ magics in Jupyter notebooks.
pip install jupyter_spaces
```

`jupyter_spaces` supports Python versions `3.5`, `3.6`, `3.7` and `3.8`.
`jupyter_spaces` supports Python versions `3.5`, `3.6`, `3.7`, `3.8` and `3.9`.

## Usage

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9

[options]
packages = jupyter_spaces
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
envlist =
{py35,py36,py37}-ipython{5,6,7}
py38-ipython7
; ipython73 adds compatibility with py38
py39-ipython7
; ipython73 adds compatibility with py38+

[testenv]
deps =
Expand Down

0 comments on commit 535a22d

Please sign in to comment.