File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,19 @@ version = "1.0.0"
9
9
description = " Extension to include jQuery on newer Sphinx releases"
10
10
readme = " README.rst"
11
11
license.text = " BSD Zero Clause License"
12
- requires-python = " >=3 .7"
12
+ requires-python = " >=2 .7"
13
13
14
14
# Classifiers list: https://pypi.org/classifiers/
15
15
classifiers = [
16
16
" Development Status :: 5 - Production/Stable" ,
17
17
" License :: OSI Approved :: BSD License" ,
18
18
" Operating System :: OS Independent" ,
19
19
" Programming Language :: Python" ,
20
+ " Programming Language :: Python :: 2" ,
20
21
" Programming Language :: Python :: 3" ,
21
- " Programming Language :: Python :: 3 :: Only" ,
22
+ " Programming Language :: Python :: 2.7" ,
23
+ " Programming Language :: Python :: 3.5" ,
24
+ " Programming Language :: Python :: 3.6" ,
22
25
" Programming Language :: Python :: 3.7" ,
23
26
" Programming Language :: Python :: 3.8" ,
24
27
" Programming Language :: Python :: 3.9" ,
Original file line number Diff line number Diff line change 4
4
version_info = (1 , 0 , 0 )
5
5
6
6
7
- def setup (app : "sphinx.application.Sphinx" ):
7
+ def setup (app ):
8
8
jquery_installed = getattr (app , "_sphinxcontrib_jquery_installed" , False )
9
9
if sphinx .version_info [:2 ] >= (6 , 0 ) and not jquery_installed :
10
10
app .add_js_file (
You can’t perform that action at this time.
0 commit comments