Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI for 3.8 #5505

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/5505.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix CI for 3.8 branch
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ aiohttp/%.c: aiohttp/%.pyx $(call to-hash,$(CYS)) aiohttp/_find_header.c
.PHONY: cythonize
cythonize: .install-cython $(PYXS:.pyx=.c)

.install-deps: .install-cython $(PYXS:.pyx=.c) $(call to-hash,$(CYS) $(REQS))
pip install -r requirements/dev.txt
.install-deps: .install-cython install $(PYXS:.pyx=.c) $(call to-hash,$(CYS) $(REQS))
@touch .install-deps

.PHONY: lint
Expand Down Expand Up @@ -145,7 +144,8 @@ compile-deps: .update-pip

.PHONY: install
install: .update-pip
@pip install -r requirements/dev.in -c requirements/dev.txt
# legacy-resolver is used until https://github.com/jazzband/pip-tools/issues/1190
@pip install --use-deprecated=legacy-resolver -r requirements/dev.in -c requirements/dev.txt

.PHONY: install-dev
install-dev: .develop