Skip to content

Commit

Permalink
Make PIP_CONSTRAINT path absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
icemac committed Feb 21, 2024
1 parent 1aefa8a commit 3e21423
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/c-code/tests.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
# cffi will probably have no public release until a Python 3.13 beta
# or even RC release, see https://github.com/python-cffi/cffi/issues/23
echo "cffi @ git+https://github.com/python-cffi/cffi.git@954cab4f889fb019a7f90df153ee1be501495f58" > cffi_constraint.txt
PIP_CONSTRAINT=cffi_constraint.txt pip install cffi
PIP_CONSTRAINT=$PWD/cffi_constraint.txt pip install cffi
{% endif %}
- name: Install Build Dependencies
{% if with_future_python %}
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
echo "cffi @ git+https://github.com/python-cffi/cffi.git@954cab4f889fb019a7f90df153ee1be501495f58" > cffi_constraint.txt
# Use "--pre" here because dependencies with support for this future
# Python release may only be available as pre-releases
PIP_CONSTRAINT=cffi_constraint.txt pip install --pre .[test]
PIP_CONSTRAINT=$PWD/cffi_constraint.txt pip install --pre .[test]
{% endif %}
- name: Install %(package_name)s and dependencies
{% if with_future_python %}
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
unzip -n dist/%(package_name)s-*whl -d src
# Use "--pre" here because dependencies with support for this future
# Python release may only be available as pre-releases
PIP_CONSTRAINT=cffi_constraint.txt pip install --pre -U -e .[test]
PIP_CONSTRAINT=$PWD/cffi_constraint.txt pip install --pre -U -e .[test]
{% endif %}
- name: Install %(package_name)s
{% if with_future_python %}
Expand Down

0 comments on commit 3e21423

Please sign in to comment.