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 64
64
python -m site
65
65
python -m pip install --upgrade pip setuptools wheel
66
66
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
67
+ pip config set global.prefer-binary true
67
68
68
69
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
69
70
if : steps.setup-python.outcome == 'success'
Original file line number Diff line number Diff line change 65
65
python -m site
66
66
python -m pip install --upgrade pip setuptools wheel
67
67
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
68
+ pip config set global.prefer-binary true
68
69
69
70
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
70
71
if : steps.setup-python.outcome == 'success'
Original file line number Diff line number Diff line change 64
64
python -m site
65
65
python -m pip install --upgrade pip setuptools wheel
66
66
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
67
+ pip config set global.prefer-binary true
67
68
68
69
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
69
70
if : steps.setup-python.outcome == 'success'
Original file line number Diff line number Diff line change @@ -40,3 +40,17 @@ classifiers:
40
40
- ' Topic :: Software Development :: Version Control :: Git'
41
41
42
42
mypy_version : " 0.800"
43
+
44
+ github_ci_requirements :
45
+ Linux :
46
+ post :
47
+ # Prefery binary wheels for older versions over sdists for newer ones
48
+ - pip config set global.prefer-binary true
49
+ Windows :
50
+ post :
51
+ # Prefery binary wheels for older versions over sdists for newer ones
52
+ - pip config set global.prefer-binary true
53
+ macOS :
54
+ post :
55
+ # Prefery binary wheels for older versions over sdists for newer ones
56
+ - pip config set global.prefer-binary true
You can’t perform that action at this time.
0 commit comments