Skip to content

Commit c81b4f6

Browse files
committed
Drop Python 3.6 support.
Python 3.6 hits end of life in a few days.
1 parent 045cb0e commit c81b4f6

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/packaging.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
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: 3 additions & 3 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

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)