Skip to content

Commit 14dba3e

Browse files
authored
Merge pull request #3329 from jasongrout/python37
Drop Python 3.6 support
2 parents 21ee990 + a11180d commit 14dba3e

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/packaging.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
- name: Install node
2323
uses: actions/setup-node@v1
2424
with:
25-
node-version: '14.x'
25+
node-version: '16.x'
2626
- name: Install Python
2727
uses: actions/setup-python@v2
2828
with:
29-
python-version: '3.9'
29+
python-version: '3.10'
3030
architecture: 'x64'
3131

3232
- uses: actions/cache@v2
@@ -87,16 +87,16 @@ jobs:
8787
fail-fast: false
8888
matrix:
8989
os: [ubuntu, windows]
90-
python: ['3.6', '3.9']
90+
python: ['3.7', '3.10']
9191
dist: ['ipywidgets*.tar.gz']
9292
include:
93-
- python: '3.9'
93+
- python: '3.10'
9494
dist: 'jupyterlab_widgets*.tar.gz'
9595
os: 'ubuntu'
96-
- python: '3.9'
96+
- python: '3.10'
9797
dist: 'widgetsnbextension*.tar.gz'
9898
os: 'ubuntu'
99-
- python: '3.9'
99+
- python: '3.10'
100100
dist: 'ipywidgets*.whl'
101101
os: 'ubuntu'
102102
steps:

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
strategy:
9999
max-parallel: 4
100100
matrix:
101-
python-version: [3.6, 3.7, 3.8, 3.9]
101+
python-version: ['3.7', '3.8', '3.9', '3.10']
102102

103103
steps:
104104
- uses: actions/checkout@v2
@@ -129,7 +129,7 @@ jobs:
129129
- name: Set up Python
130130
uses: actions/setup-python@v1
131131
with:
132-
python-version: 3.6
132+
python-version: 3.7
133133
- uses: actions/cache@v1
134134
with:
135135
path: ~/.cache/pip
@@ -153,7 +153,7 @@ jobs:
153153
- name: Set up Python
154154
uses: actions/setup-python@v2
155155
with:
156-
python-version: 3.9
156+
python-version: '3.10'
157157
- uses: actions/cache@v1
158158
with:
159159
path: ~/.cache/pip
@@ -169,7 +169,7 @@ jobs:
169169
- name: Set up Node
170170
uses: actions/setup-node@v2
171171
with:
172-
node-version: 14.x
172+
node-version: '16.x'
173173

174174
- name: Get yarn cache
175175
id: yarn-cache

python/ipywidgets/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ classifiers =
1818
License :: OSI Approved :: BSD License
1919
Programming Language :: Python
2020
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.6
2221
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
24+
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: 3 :: Only
2626
Framework :: Jupyter
2727

2828
[options]
29-
python_requires = >=3.6
29+
python_requires = >=3.7
3030

3131
zip_safe = False
3232
# include_package_data = True

python/jupyterlab_widgets/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ classifiers =
1818
License :: OSI Approved :: BSD License
1919
Programming Language :: Python
2020
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.6
2221
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
24+
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: 3 :: Only
2626
Framework :: Jupyter
2727
Framework :: Jupyter :: JupyterLab
@@ -30,7 +30,7 @@ classifiers =
3030
Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
3131

3232
[options]
33-
python_requires = >=3.6
33+
python_requires = >=3.7
3434
zip_safe=False
3535
include_package_data = True
3636
packages = find:

python/widgetsnbextension/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ classifiers =
1818
License :: OSI Approved :: BSD License
1919
Programming Language :: Python
2020
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.6
2221
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
24+
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: 3 :: Only
2626
Framework :: Jupyter
2727

2828
[options]
29-
python_requires = >=3.6
29+
python_requires = >=3.7
3030
zip_safe=False
3131
include_package_data = True
3232
packages = find:

0 commit comments

Comments
 (0)