Skip to content

Commit 9553cd3

Browse files
committed
chg: Removed curio support.
1 parent 635ea5e commit 9553cd3

File tree

9 files changed

+63
-118
lines changed

9 files changed

+63
-118
lines changed

docs/nicfit.rst

Lines changed: 47 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,70 @@
11
nicfit package
22
==============
33

4+
Subpackages
5+
-----------
6+
7+
.. toctree::
8+
9+
nicfit.console
10+
nicfit.shell
11+
412
Submodules
513
----------
614

715
nicfit.aio module
816
-----------------
917

1018
.. automodule:: nicfit.aio
11-
:members:
12-
:undoc-members:
13-
:show-inheritance:
19+
:members:
20+
:undoc-members:
21+
:show-inheritance:
1422

1523
nicfit.app module
1624
-----------------
1725

1826
.. automodule:: nicfit.app
19-
:members:
20-
:undoc-members:
21-
:show-inheritance:
27+
:members:
28+
:undoc-members:
29+
:show-inheritance:
30+
31+
nicfit.command module
32+
---------------------
33+
34+
.. automodule:: nicfit.command
35+
:members:
36+
:undoc-members:
37+
:show-inheritance:
38+
39+
nicfit.config module
40+
--------------------
41+
42+
.. automodule:: nicfit.config
43+
:members:
44+
:undoc-members:
45+
:show-inheritance:
46+
47+
nicfit.logger module
48+
--------------------
49+
50+
.. automodule:: nicfit.logger
51+
:members:
52+
:undoc-members:
53+
:show-inheritance:
2254

23-
nicfit.curio module
24-
-------------------
55+
nicfit.util module
56+
------------------
2557

26-
.. automodule:: nicfit.curio
27-
:members:
28-
:undoc-members:
29-
:show-inheritance:
58+
.. automodule:: nicfit.util
59+
:members:
60+
:undoc-members:
61+
:show-inheritance:
3062

3163

3264
Module contents
3365
---------------
3466

3567
.. automodule:: nicfit
36-
:members:
37-
:undoc-members:
38-
:show-inheritance:
68+
:members:
69+
:undoc-members:
70+
:show-inheritance:

examples/curio_example.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

nicfit/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def _run(self, args_list=None):
104104

105105
class AsyncApplication(Application):
106106
"""A base for asynchronous apps.
107-
See :mod:`nicfit.aio.Application` and :mod:`nicfit.curio.Application`.
107+
See :mod:`nicfit.aio.Application`.
108108
"""
109109
async def _main(self, args):
110110
self.log.debug("AsyncApplication._main: {args}".format(**locals()))

nicfit/curio.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

requirements.txt

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,28 @@
44
#
55
# pip-compile --output-file=./requirements.txt requirements.txt
66
#
7-
arrow==0.15.4 # via jinja2-time
8-
attrs==19.1.0
7+
arrow==0.15.5 # via jinja2-time
8+
attrs==19.3.0 # via -r requirements.txt
99
binaryornot==0.4.4 # via cookiecutter
1010
certifi==2019.11.28 # via requests
1111
chardet==3.0.4 # via binaryornot, requests
12-
click==7.0 # via cookiecutter
13-
cookiecutter==1.7.0
14-
curio==0.9
15-
deprecation==2.0.7
12+
click==7.1.1 # via cookiecutter
13+
cookiecutter==1.7.0 # via -r requirements.txt
14+
deprecation==2.0.7 # via -r requirements.txt
1615
future==0.18.2 # via cookiecutter
17-
idna==2.8 # via requests
16+
idna==2.9 # via requests
1817
jinja2-time==0.2.0 # via cookiecutter
19-
jinja2==2.10.3 # via cookiecutter, jinja2-time
18+
jinja2==2.11.1 # via cookiecutter, jinja2-time
2019
markupsafe==1.1.1 # via jinja2
21-
packaging==19.2 # via deprecation
20+
packaging==20.3 # via deprecation
2221
poyo==0.5.0 # via cookiecutter
23-
prompt-toolkit==2.0.10
24-
pygments==2.5.2
22+
prompt-toolkit==3.0.5 # via -r requirements.txt
23+
pygments==2.6.1 # via -r requirements.txt
2524
pyparsing==2.4.6 # via packaging
2625
python-dateutil==2.8.1 # via arrow
27-
pyyaml==5.2
28-
requests==2.22.0 # via cookiecutter
29-
six==1.13.0 # via packaging, prompt-toolkit, python-dateutil
30-
urllib3==1.25.7 # via requests
31-
wcwidth==0.1.7 # via prompt-toolkit
26+
pyyaml==5.3.1 # via -r requirements.txt
27+
requests==2.23.0 # via cookiecutter
28+
six==1.14.0 # via packaging, python-dateutil
29+
urllib3==1.25.8 # via requests
30+
wcwidth==0.1.9 # via prompt-toolkit
3231
whichcraft==0.6.1 # via cookiecutter

requirements/extra_curio.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

requirements/requirements.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ main:
66
extra_cookiecutter:
77
- cookiecutter
88

9-
extra_curio:
10-
- curio
11-
129
extra_shell:
1310
- prompt-toolkit
1411
- pygments
@@ -19,7 +16,6 @@ test:
1916
- pytest-cov
2017
- pytest-runner
2118
- pytest-asyncio
22-
- pytest-curio
2319
- babel
2420

2521
dev:

requirements/test.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ babel==2.8.0
22
pytest==5.3.2
33
pytest-asyncio
44
pytest-cov==2.8.1
5-
pytest-curio
65
pytest-runner==5.2
76
tox==3.14.3

tests/test_curio.py

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)