File tree 4 files changed +7
-1
lines changed
4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change
1
+ Added missing files to the source distribution to fix ``Makefile`` targets.
2
+ Added a ``cythonize-nodeps`` target to run Cython without invoking pip to install dependencies.
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ graft aiohttp
7
7
graft docs
8
8
graft examples
9
9
graft tests
10
+ graft tools
10
11
graft requirements
11
12
recursive-include vendor *
12
13
global-include aiohttp *.pyi
Original file line number Diff line number Diff line change @@ -81,6 +81,9 @@ generate-llhttp: .llhttp-gen
81
81
.PHONY : cythonize
82
82
cythonize : .install-cython $(PYXS:.pyx=.c ) aiohttp/_websocket/reader_c.c
83
83
84
+ .PHONY : cythonize-nodeps
85
+ cythonize-nodeps : $(PYXS:.pyx=.c ) aiohttp/_websocket/reader_c.c
86
+
84
87
.install-deps : .install-cython $(PYXS:.pyx=.c ) aiohttp/_websocket/reader_c.c $(call to-hash,$(CYS ) $(REQS ) )
85
88
@python -m pip install -r requirements/dev.in -c requirements/dev.txt
86
89
@touch .install-deps
Original file line number Diff line number Diff line change 7
7
import multidict
8
8
9
9
ROOT = pathlib .Path .cwd ()
10
- while ROOT .parent != ROOT and not (ROOT / ".git " ).exists ():
10
+ while ROOT .parent != ROOT and not (ROOT / "pyproject.toml " ).exists ():
11
11
ROOT = ROOT .parent
12
12
13
13
You can’t perform that action at this time.
0 commit comments