Skip to content

Commit b9c0d3c

Browse files
authored
Merge pull request #250 from martinRenou/fix_ci_lab
Fix CI and remove Python 3.6
2 parents 037dc34 + 59e9647 commit b9c0d3c

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest]
23-
python-version: [3.8]
23+
python-version: ['3.10']
2424

2525
steps:
2626
- name: Checkout
@@ -95,14 +95,12 @@ jobs:
9595
fail-fast: false
9696
matrix:
9797
os: [ubuntu, macos]
98-
python: ['3.6', '3.9']
98+
python: ['3.7', '3.10']
9999
include:
100-
- python: '3.6'
100+
- python: '3.7'
101101
dist: 'ipycanvas*.tar.gz'
102-
jlab_version: 3
103-
- python: '3.9'
102+
- python: '3.10'
104103
dist: 'ipycanvas*.whl'
105-
jlab_version: 2.3.2
106104

107105
steps:
108106

@@ -118,7 +116,7 @@ jobs:
118116
channels: conda-forge
119117

120118
- name: Install dependencies
121-
run: mamba install python=${{ matrix.python-version }} pip yarn jupyterlab=${{ matrix.jlab_version }} ipywidgets jupyter-packaging
119+
run: mamba install python=${{ matrix.python-version }} pip yarn jupyterlab ipywidgets jupyter-packaging
122120

123121
- uses: actions/download-artifact@v2
124122
with:
@@ -130,12 +128,6 @@ jobs:
130128
cd dist
131129
pip install -vv ${{ matrix.dist }}
132130
133-
- name: Manually install labextension for lab2
134-
if: ${{ matrix.jlab_version }} == 2.3.2
135-
run: jupyter labextension install --debug .
136-
env:
137-
NODE_OPTIONS: --openssl-legacy-provider
138-
139131
- name: Test installation files
140132
run: |
141133
test -d $CONDA_PREFIX/share/jupyter/nbextensions/ipycanvas

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
'License :: OSI Approved :: BSD License',
8585
'Programming Language :: Python',
8686
'Programming Language :: Python :: 3',
87-
'Programming Language :: Python :: 3.6',
8887
'Programming Language :: Python :: 3.7',
8988
'Programming Language :: Python :: 3.8',
9089
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)