Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: python -Im pip install build
- name: Build sdists and pure-python wheel
env:
PIP_CONSTRAINT: requirements/ci.txt
PIP_CONSTRAINT: ci.txt
run: python -Im build --config-setting=pure-python=true
- name: Determine actual created filenames
id: dist-filenames-detection
Expand Down Expand Up @@ -221,11 +221,11 @@ jobs:
python-version: ${{ matrix.pyver }}
allow-prereleases: true
cache: pip
cache-dependency-path: requirements/*.txt
cache-dependency-path: ci.txt
- name: Install dependencies
uses: py-actions/py-dependency-install@v4
with:
path: requirements/ci.txt
path: ci.txt
- name: Determine pre-compiled compatible wheel
env:
# NOTE: When `pip` is forced to colorize output piped into `jq`,
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SRC = frozenlist tests setup.py
all: test

.install-cython:
pip install -r requirements/ci.txt
pip install -r ci.txt
touch .install-cython

frozenlist/%.c: frozenlist/%.pyx
Expand All @@ -15,7 +15,7 @@ frozenlist/%.c: frozenlist/%.pyx
cythonize: .install-cython $(PYXS:.pyx=.c)

.install-deps: $(shell find requirements -type f)
pip install -r requirements/ci.txt
pip install -r ci.txt
ifndef CI
pre-commit install
endif
Expand Down
2 changes: 1 addition & 1 deletion requirements/ci.txt → ci.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r towncrier.txt
-r requirements/towncrier.txt
build==1.0.3
coverage==7.6.1
cython==3.0.6
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-e . --config-settings=pure-python=false
-r ci.txt
-r ../ci.txt
Loading