Skip to content

Commit 869fa07

Browse files
committed
Run tests on Python 3.10
1 parent b9fcbc6 commit 869fa07

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.6", "3.7", "3.8", "3.9"]
10+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ magics in Jupyter notebooks.
1313
pip install jupyter_spaces
1414
```
1515

16-
`jupyter_spaces` supports Python versions `3.5`, `3.6`, `3.7`, `3.8` and `3.9`.
16+
`jupyter_spaces` supports Python versions `3.6`, `3.7`, `3.8`, `3.9` and `3.10`.
1717

1818
## Usage
1919

requirements/test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pytest==5.4.3
1+
pytest>=7.0.1
22
pytest-cov==2.10.0
33
tox==3.15.2

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ classifiers =
2424
License :: OSI Approved :: MIT License
2525
Operating System :: OS Independent
2626
Programming Language :: Python :: 3
27-
Programming Language :: Python :: 3.5
2827
Programming Language :: Python :: 3.6
2928
Programming Language :: Python :: 3.7
3029
Programming Language :: Python :: 3.8
3130
Programming Language :: Python :: 3.9
31+
Programming Language :: Python :: 3.10
3232

3333
[options]
3434
packages = jupyter_spaces
35-
python_requires = ~=3.5
35+
python_requires = ~=3.6
3636
install_requires =
3737
ipython>=5.0.0

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
{py36,py37}-ipython{5,6,7}
44
py38-ipython7
55
py39-ipython7
6+
py310-ipython7
67
; ipython73 adds compatibility with py38+
78

89
[gh-actions]
@@ -11,6 +12,7 @@ python =
1112
3.7: py37
1213
3.8: py38
1314
3.9: py39
15+
3.10: py310
1416

1517
[testenv]
1618
deps =

0 commit comments

Comments
 (0)