Browse Source

reinstall SQLAlchemy without cyextension for 3.14t and ubuntu

pull/15149/head
svlandeg 4 months ago
parent
commit
1b2934bf5d
  1. 3
      .github/workflows/test.yml

3
.github/workflows/test.yml

@ -122,6 +122,9 @@ jobs:
- name: Install deprecated libraries just for testing - name: Install deprecated libraries just for testing
if: matrix.deprecated-tests == 'test-deprecation' if: matrix.deprecated-tests == 'test-deprecation'
run: uv pip install orjson ujson run: uv pip install orjson ujson
- name: Reinstall SQLAlchemy without Cython extensions
if: matrix.python-version == '3.14t' && matrix.os == 'ubuntu-latest'
run: "DISABLE_SQLALCHEMY_CEXT=1 uv pip install --force-reinstall --no-binary :all: sqlalchemy"
- run: mkdir coverage - run: mkdir coverage
- name: Test - name: Test
run: uv run --no-sync bash scripts/test-cov.sh run: uv run --no-sync bash scripts/test-cov.sh

Loading…
Cancel
Save