Skip to content

Commit 3ca4d9a

Browse files
committed
Test on more Python versions.
1 parent f911ff5 commit 3ca4d9a

6 files changed

Lines changed: 22 additions & 15 deletions

File tree

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "windows-2019"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8"]
20+
python-version: ["3.6","3.7","3.8","3.9"]
2121

2222

2323
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "macos-latest"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8"]
20+
python-version: ["3.6","3.7","3.8","3.9"]
2121

2222

2323
steps:

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ python:
99
- '3.6'
1010
- '3.7'
1111
- '3.8'
12+
- '3.9'
13+
- '3.10-dev'
1214

1315
arch:
1416
- amd64
@@ -33,11 +35,17 @@ stages:
3335
jobs:
3436
allow_failures:
3537
- arch: arm64
38+
- python: ['3.10-dev']
39+
3640
exclude:
3741
- python: '3.7'
3842
arch: arm64
3943
- python: '3.8'
4044
arch: arm64
45+
- python: '3.9'
46+
arch: arm64
47+
- python: '3.10-dev'
48+
arch: arm64
4149

4250
include:
4351
- stage: test

repo_helper.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,34 +17,27 @@ conda_channels:
1717

1818
python_deploy_version: 3.6
1919

20-
exclude_files:
21-
- lint_roller
22-
# Must not lint-roll tests
2320

2421
# Versions to run tests for
2522
python_versions:
2623
- '3.6'
2724
- '3.7'
2825
- '3.8'
26+
- '3.9'
27+
- '3.10-dev'
2928

3029
# travis secure password for PyPI
3130
travis_pypi_secure: ""
3231

3332
additional_ignore:
3433
- "tests/output/"
3534

36-
# additional lines for MANIFEST.in
37-
#manifest_additional:
38-
# -
3935

4036
console_scripts:
4137
- "notebook2script = notebook2script.__main__:main"
4238

4339
classifiers:
4440
- "Development Status :: 4 - Beta"
45-
# - "Development Status :: 5 - Production/Stable"
46-
# - "Development Status :: 6 - Mature"
47-
# - "Development Status :: 7 - Inactive"
4841
- 'Intended Audience :: Developers'
4942
- "Intended Audience :: End Users/Desktop"
5043
- "Environment :: Console"

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ classifiers =
2929
Operating System :: POSIX :: Linux
3030
Programming Language :: Python
3131
Programming Language :: Python :: 3 :: Only
32+
Programming Language :: Python :: 3.10
3233
Programming Language :: Python :: 3.6
3334
Programming Language :: Python :: 3.7
3435
Programming Language :: Python :: 3.8
36+
Programming Language :: Python :: 3.9
3537
Programming Language :: Python :: Implementation :: CPython
3638
Topic :: Software Development
3739
Topic :: Utilities

tox.ini

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
# * pytest
1919

2020
[tox]
21-
envlist = py36, py37, py38, mypy, build
21+
envlist = py36, py37, py38, py39, py310-dev, mypy, build
2222
skip_missing_interpreters = True
2323
requires = pip>=20.2.1
2424
isolated_build = True
2525

2626
[envlists]
27-
test = py36, py37, py38
27+
test = py36, py37, py38, py39, py310-dev
2828
qa = mypy, lint
2929
cov = py36, coverage
3030

@@ -33,12 +33,16 @@ python =
3333
3.6: py36, build, mypy
3434
3.7: py37, build
3535
3.8: py38, build
36+
3.9: py39, build
37+
3.10-dev: py310-dev, build
3638

3739
[gh-actions]
3840
python =
3941
3.6: py36, build
4042
3.7: py37, build
4143
3.8: py38, build
44+
3.9: py39, build
45+
3.10-dev: py310-dev, build
4246

4347
[testenv]
4448
setenv =

0 commit comments

Comments
 (0)