Skip to content

Commit f539479

Browse files
authored
Merge pull request #229 from martinRenou/fix_ci_ensure_python
Fix CI
2 parents 78aefb3 + 8a623f0 commit f539479

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

setup.py

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from jupyter_packaging import (
1515
create_cmdclass, install_npm, ensure_targets,
16-
combine_commands, ensure_python,
16+
combine_commands,
1717
get_version, skip_if_exists
1818
)
1919

@@ -25,9 +25,6 @@
2525
# The name of the project
2626
name = 'ipycanvas'
2727

28-
# Ensure a valid python version
29-
ensure_python('>=3.5')
30-
3128
# Get our version
3229
version = get_version(pjoin(name, '_version.py'))
3330

@@ -51,7 +48,7 @@
5148
('share/jupyter/nbextensions/ipycanvas',
5249
nb_path, '*.js*'),
5350
('share/jupyter/labextensions/ipycanvas', lab_path, '**'),
54-
('etc/jupyter/nbconfig/notebook.d' , HERE, 'ipycanvas.json')
51+
('etc/jupyter/nbconfig/notebook.d', HERE, 'ipycanvas.json')
5552
]
5653

5754

@@ -87,20 +84,21 @@
8784
'License :: OSI Approved :: BSD License',
8885
'Programming Language :: Python',
8986
'Programming Language :: Python :: 3',
90-
'Programming Language :: Python :: 3.5',
9187
'Programming Language :: Python :: 3.6',
9288
'Programming Language :: Python :: 3.7',
89+
'Programming Language :: Python :: 3.8',
90+
'Programming Language :: Python :: 3.9',
91+
'Programming Language :: Python :: 3.10',
9392
'Framework :: Jupyter',
9493
],
95-
include_package_data = True,
96-
install_requires = [
94+
include_package_data=True,
95+
install_requires=[
9796
'ipywidgets>=7.6.0',
9897
'pillow>=6.0',
9998
'numpy'
10099
],
101-
extras_require = {},
102-
entry_points = {
103-
},
100+
extras_require={},
101+
entry_points={},
104102
)
105103

106104
if __name__ == '__main__':

0 commit comments

Comments
 (0)