Skip to content

Commit dabeb75

Browse files
committed
Update the macOS CI configurations to Python 3-supporting versions
1 parent b72729d commit dabeb75

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ jobs:
5050
name: "Get Python Build/Package Dependencies"
5151
command: |
5252
# 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
5454
# Pre-install these two setup_depends using pip so we don't have
5555
# 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
5757
# And get these so we can build and then upload a wheel
58-
pip install wheel twine
58+
python3 -m pip install wheel twine
5959
6060
- run:
6161
name: "Build Wheel"
6262
command: |
63-
python setup.py bdist_wheel
63+
python3 setup.py bdist_wheel
6464
6565
- run:
6666
name: "Upload Wheel"
@@ -179,10 +179,10 @@ workflows:
179179
parameters:
180180
# https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
181181
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"
186186
filters:
187187
# CircleCI does not run workflows for tags unless you explicitly
188188
# specify tag filters. Additionally, if a job requires any other

0 commit comments

Comments
 (0)