File tree 3 files changed +7
-11
lines changed
3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 98
98
strategy :
99
99
max-parallel : 4
100
100
matrix :
101
- python-version : [3.5 , 3.6 , 3.7 , 3.8 ]
101
+ python-version : [3.6 , 3.7 , 3.8 , 3.9 ]
102
102
103
103
steps :
104
104
- uses : actions/checkout@v2
@@ -128,7 +128,7 @@ jobs:
128
128
- name : Set up Python
129
129
uses : actions/setup-python@v1
130
130
with :
131
- python-version : 3.5
131
+ python-version : 3.6
132
132
- uses : actions/cache@v1
133
133
with :
134
134
path : ~/.cache/pip
Original file line number Diff line number Diff line change 78
78
'License :: OSI Approved :: BSD License' ,
79
79
'Programming Language :: Python' ,
80
80
'Programming Language :: Python :: 3' ,
81
- 'Programming Language :: Python :: 3.5' ,
82
81
'Programming Language :: Python :: 3.6' ,
83
82
'Programming Language :: Python :: 3.7' ,
83
+ 'Programming Language :: Python :: 3.8' ,
84
+ 'Programming Language :: Python :: 3.9' ,
84
85
'Programming Language :: Python :: 3 :: Only' ,
85
86
'Framework :: Jupyter'
86
87
],
87
88
cmdclass = {
88
89
'build_py' : build_py ,
89
90
'sdist' : sdist ,
90
91
},
91
- python_requires = '>=3.5 ' ,
92
+ python_requires = '>=3.6 ' ,
92
93
)
93
94
94
95
if 'develop' in sys .argv or any (a .startswith ('bdist' ) for a in sys .argv ):
107
108
# interpreter, to allow ipywidgets to be
108
109
# installed on bare kernels.
109
110
'widgetsnbextension~=4.0a0' ,
111
+ 'jupyterlab_widgets~=2.0a0'
110
112
]
111
113
112
114
extras_require = setuptools_args ['extras_require' ] = {
113
- ':python_version>="3.6"' : ['jupyterlab_widgets~=2.0a0' ],
114
115
'test' : ['pytest>=3.6.0' , 'pytest-cov' ],
115
116
}
116
117
Original file line number Diff line number Diff line change 34
34
35
35
import sys
36
36
37
- v = sys .version_info
38
- if v [:2 ] < (3 , 5 ):
39
- error = "ERROR: %s requires Python version 3.5 or above." % name
40
- print (error , file = sys .stderr )
41
- sys .exit (1 )
42
-
43
37
#-----------------------------------------------------------------------------
44
38
# get on with it
45
39
#-----------------------------------------------------------------------------
@@ -204,6 +198,7 @@ def run(self):
204
198
],
205
199
zip_safe = False ,
206
200
include_package_data = True ,
201
+ python_requires = '>=3.6'
207
202
)
208
203
209
204
if 'develop' in sys .argv or any (a .startswith ('bdist' ) for a in sys .argv ):
You can’t perform that action at this time.
0 commit comments