##// END OF EJS Templates
pin pytest-asyncio because of pytest-dev/pytest-asyncio#654
Matthias Bussonnier -
Show More
@@ -1,117 +1,117 b''
1 [metadata]
1 [metadata]
2 name = ipython
2 name = ipython
3 version = attr: IPython.core.release.__version__
3 version = attr: IPython.core.release.__version__
4 url = https://ipython.org
4 url = https://ipython.org
5 description = IPython: Productive Interactive Computing
5 description = IPython: Productive Interactive Computing
6 long_description_content_type = text/x-rst
6 long_description_content_type = text/x-rst
7 long_description = file: long_description.rst
7 long_description = file: long_description.rst
8 license_file = LICENSE
8 license_file = LICENSE
9 project_urls =
9 project_urls =
10 Documentation = https://ipython.readthedocs.io/
10 Documentation = https://ipython.readthedocs.io/
11 Funding = https://numfocus.org/
11 Funding = https://numfocus.org/
12 Source = https://github.com/ipython/ipython
12 Source = https://github.com/ipython/ipython
13 Tracker = https://github.com/ipython/ipython/issues
13 Tracker = https://github.com/ipython/ipython/issues
14 keywords = Interactive, Interpreter, Shell, Embedding
14 keywords = Interactive, Interpreter, Shell, Embedding
15 platforms = Linux, Mac OSX, Windows
15 platforms = Linux, Mac OSX, Windows
16 classifiers =
16 classifiers =
17 Framework :: IPython
17 Framework :: IPython
18 Framework :: Jupyter
18 Framework :: Jupyter
19 Intended Audience :: Developers
19 Intended Audience :: Developers
20 Intended Audience :: Science/Research
20 Intended Audience :: Science/Research
21 License :: OSI Approved :: BSD License
21 License :: OSI Approved :: BSD License
22 Programming Language :: Python
22 Programming Language :: Python
23 Programming Language :: Python :: 3
23 Programming Language :: Python :: 3
24 Programming Language :: Python :: 3 :: Only
24 Programming Language :: Python :: 3 :: Only
25 Topic :: System :: Shells
25 Topic :: System :: Shells
26
26
27 [options]
27 [options]
28 packages = find:
28 packages = find:
29 python_requires = >=3.9
29 python_requires = >=3.9
30 zip_safe = False
30 zip_safe = False
31 install_requires =
31 install_requires =
32 appnope; sys_platform == "darwin"
32 appnope; sys_platform == "darwin"
33 colorama; sys_platform == "win32"
33 colorama; sys_platform == "win32"
34 decorator
34 decorator
35 exceptiongroup; python_version<'3.11'
35 exceptiongroup; python_version<'3.11'
36 jedi>=0.16
36 jedi>=0.16
37 matplotlib-inline
37 matplotlib-inline
38 pexpect>4.3; sys_platform != "win32"
38 pexpect>4.3; sys_platform != "win32"
39 prompt_toolkit>=3.0.30,<3.1.0,!=3.0.37
39 prompt_toolkit>=3.0.30,<3.1.0,!=3.0.37
40 pygments>=2.4.0
40 pygments>=2.4.0
41 stack_data
41 stack_data
42 traitlets>=5
42 traitlets>=5
43 typing_extensions ; python_version<'3.10'
43 typing_extensions ; python_version<'3.10'
44
44
45 [options.extras_require]
45 [options.extras_require]
46 black =
46 black =
47 black
47 black
48 doc =
48 doc =
49 ipykernel
49 ipykernel
50 setuptools>=18.5
50 setuptools>=18.5
51 sphinx>=1.3
51 sphinx>=1.3
52 sphinx-rtd-theme
52 sphinx-rtd-theme
53 docrepr
53 docrepr
54 matplotlib
54 matplotlib
55 stack_data
55 stack_data
56 pytest<7
56 pytest<7
57 typing_extensions
57 typing_extensions
58 exceptiongroup
58 exceptiongroup
59 %(test)s
59 %(test)s
60 kernel =
60 kernel =
61 ipykernel
61 ipykernel
62 nbconvert =
62 nbconvert =
63 nbconvert
63 nbconvert
64 nbformat =
64 nbformat =
65 nbformat
65 nbformat
66 notebook =
66 notebook =
67 ipywidgets
67 ipywidgets
68 notebook
68 notebook
69 parallel =
69 parallel =
70 ipyparallel
70 ipyparallel
71 qtconsole =
71 qtconsole =
72 qtconsole
72 qtconsole
73 terminal =
73 terminal =
74 test =
74 test =
75 pytest<7.1
75 pytest<7.1
76 pytest-asyncio
76 pytest-asyncio<0.22
77 testpath
77 testpath
78 pickleshare
78 pickleshare
79 test_extra =
79 test_extra =
80 %(test)s
80 %(test)s
81 curio
81 curio
82 matplotlib!=3.2.0
82 matplotlib!=3.2.0
83 nbformat
83 nbformat
84 numpy>=1.22
84 numpy>=1.22
85 pandas
85 pandas
86 trio
86 trio
87 all =
87 all =
88 %(black)s
88 %(black)s
89 %(doc)s
89 %(doc)s
90 %(kernel)s
90 %(kernel)s
91 %(nbconvert)s
91 %(nbconvert)s
92 %(nbformat)s
92 %(nbformat)s
93 %(notebook)s
93 %(notebook)s
94 %(parallel)s
94 %(parallel)s
95 %(qtconsole)s
95 %(qtconsole)s
96 %(terminal)s
96 %(terminal)s
97 %(test_extra)s
97 %(test_extra)s
98 %(test)s
98 %(test)s
99
99
100 [options.packages.find]
100 [options.packages.find]
101 exclude =
101 exclude =
102 setupext
102 setupext
103
103
104 [options.package_data]
104 [options.package_data]
105 IPython = py.typed
105 IPython = py.typed
106 IPython.core = profile/README*
106 IPython.core = profile/README*
107 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
107 IPython.core.tests = *.png, *.jpg, daft_extension/*.py
108 IPython.lib.tests = *.wav
108 IPython.lib.tests = *.wav
109 IPython.testing.plugin = *.txt
109 IPython.testing.plugin = *.txt
110
110
111 [velin]
111 [velin]
112 ignore_patterns =
112 ignore_patterns =
113 IPython/core/tests
113 IPython/core/tests
114 IPython/testing
114 IPython/testing
115
115
116 [tool.black]
116 [tool.black]
117 exclude = 'timing\.py'
117 exclude = 'timing\.py'
General Comments 0
You need to be logged in to leave comments. Login now