File tree Expand file tree Collapse file tree 5 files changed +18
-0
lines changed Expand file tree Collapse file tree 5 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 48
48
python -m site
49
49
python -m pip install --upgrade pip setuptools wheel
50
50
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
51
+ pip config set global.prefer-binary true
51
52
52
53
- name : " Run mypy"
53
54
if : steps.changes.outputs.code == 'true'
Original file line number Diff line number Diff line change 62
62
python -m site
63
63
python -m pip install --upgrade pip setuptools wheel
64
64
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
65
+ pip config set global.prefer-binary true
65
66
66
67
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
67
68
if : steps.setup-python.outcome == 'success'
Original file line number Diff line number Diff line change 63
63
python -m site
64
64
python -m pip install --upgrade pip setuptools wheel
65
65
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
66
+ pip config set global.prefer-binary true
66
67
67
68
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
68
69
if : steps.setup-python.outcome == 'success'
Original file line number Diff line number Diff line change 62
62
python -m site
63
63
python -m pip install --upgrade pip setuptools wheel
64
64
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
65
+ pip config set global.prefer-binary true
65
66
66
67
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
67
68
if : steps.setup-python.outcome == 'success'
Original file line number Diff line number Diff line change @@ -46,3 +46,17 @@ mypy_version: "1.7.1"
46
46
tox_unmanaged :
47
47
- testenv
48
48
- testenv:py312
49
+
50
+ github_ci_requirements :
51
+ Linux :
52
+ post :
53
+ # Prefery binary wheels for older versions over sdists for newer ones
54
+ - pip config set global.prefer-binary true
55
+ Windows :
56
+ post :
57
+ # Prefery binary wheels for older versions over sdists for newer ones
58
+ - pip config set global.prefer-binary true
59
+ macOS :
60
+ post :
61
+ # Prefery binary wheels for older versions over sdists for newer ones
62
+ - pip config set global.prefer-binary true
You can’t perform that action at this time.
0 commit comments