Skip to content

Commit

Permalink
Pin setuptools again (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake authored May 24, 2024
1 parent 05e69a2 commit 4dc0484
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/c-code/tests.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
if: matrix.python-version == '%(future_python_version)s'
run: |
pip install -U pip
pip install -U setuptools wheel twine
pip install -U "setuptools<69" wheel twine
{% if require_cffi %}
# Remove this hack once 'cffi' has a release supporting Python 3.13.
pip install -e "git+https://github.com/python-cffi/cffi.git#egg=cffi"
Expand All @@ -113,7 +113,7 @@ jobs:
{% endif %}
run: |
pip install -U pip
pip install -U setuptools wheel twine
pip install -U "setuptools<69" wheel twine
{% if require_cffi %}
pip install cffi
{% endif %}
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
- name: Install %(package_name)s %(future_python_version)s ${{ matrix.python-version }}
if: matrix.python-version == '%(future_python_version)s'
run: |
pip install -U wheel setuptools
pip install -U wheel "setuptools<69"
{% if require_cffi %}
# Remove this hack once 'cffi' has a release supporting Python 3.13.
pip install -e "git+https://github.com/python-cffi/cffi.git#egg=cffi"
Expand All @@ -278,7 +278,7 @@ jobs:
if: matrix.python-version != '%(future_python_version)s'
{% endif %}
run: |
pip install -U wheel setuptools
pip install -U wheel "setuptools<69"
pip install -U coverage
pip install -U 'cffi; platform_python_implementation == "CPython"'
# Unzip into src/ so that testrunner can find the .so files
Expand Down
1 change: 1 addition & 0 deletions config/default/tox-testenv.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ wheel_build_env = .pkg
pip_pre = py313: true
{% endif %}
deps =
setuptools < 69
{% for line in testenv_deps %}
%(line)s
{% endfor %}
Expand Down

0 comments on commit 4dc0484

Please sign in to comment.