@@ -217,8 +217,8 @@ def finalize_options(self):
217
217
pass
218
218
219
219
def run (self ):
220
- if sys .version_info < (3 , 6 ):
221
- raise ImportError ("Code generation must be executed with Python >= 3.6 " )
220
+ if sys .version_info < (3 , 8 ):
221
+ raise ImportError ("Code generation must be executed with Python >= 3.8 " )
222
222
223
223
from codegen import perform_codegen
224
224
@@ -506,16 +506,15 @@ def run(self):
506
506
long_description_content_type = "text/markdown" ,
507
507
classifiers = [
508
508
"Development Status :: 5 - Production/Stable" ,
509
- "Programming Language :: Python :: 3.6" ,
510
- "Programming Language :: Python :: 3.7" ,
511
509
"Programming Language :: Python :: 3.8" ,
512
510
"Programming Language :: Python :: 3.9" ,
513
511
"Programming Language :: Python :: 3.10" ,
514
512
"Programming Language :: Python :: 3.11" ,
513
+ "Programming Language :: Python :: 3.12" ,
515
514
"Topic :: Scientific/Engineering :: Visualization" ,
516
515
"License :: OSI Approved :: MIT License" ,
517
516
],
518
- python_requires = ">=3.6 " ,
517
+ python_requires = ">=3.8 " ,
519
518
license = "MIT" ,
520
519
packages = [
521
520
"jupyterlab_plotly" ,
0 commit comments