File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -50,17 +50,17 @@ jobs:
50
50
name : " Get Python Build/Package Dependencies"
51
51
command : |
52
52
# Make sure we have a pip that's aware of Python version constraints
53
- pip install --upgrade pip
53
+ python3 -m pip install --upgrade pip
54
54
# Pre-install these two setup_depends using pip so we don't have
55
55
# to rely on whatever resolution logic setuptools would apply.
56
- pip install --upgrade milksnake setuptools_scm
56
+ python3 -m pip install --upgrade milksnake setuptools_scm
57
57
# And get these so we can build and then upload a wheel
58
- pip install wheel twine
58
+ python3 -m pip install wheel twine
59
59
60
60
- run :
61
61
name : " Build Wheel"
62
62
command : |
63
- python setup.py bdist_wheel
63
+ python3 setup.py bdist_wheel
64
64
65
65
- run :
66
66
name : " Upload Wheel"
@@ -179,10 +179,10 @@ workflows:
179
179
parameters :
180
180
# https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
181
181
xcode-version :
182
- # Latest macOS 10.14
183
- - " 11.1 .0"
184
- # The newest macOS 10.15 that still has Python 2. :/
185
- - " 11.4 .1"
182
+ # Latest macOS 10.x
183
+ - " 12.4 .0"
184
+ # Latest macOS 11.x
185
+ - " 13.2 .1"
186
186
filters :
187
187
# CircleCI does not run workflows for tags unless you explicitly
188
188
# specify tag filters. Additionally, if a job requires any other
You can’t perform that action at this time.
0 commit comments