We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1851443 commit 073c660Copy full SHA for 073c660
.github/workflows/build.yml
@@ -181,15 +181,15 @@ jobs:
181
steps:
182
- uses: actions/checkout@v3
183
- name: Install Homebrew dependencies
184
- run: brew install pkg-config openssl@1.1 xz gdbm tcl-tk
+ run: brew install pkg-config openssl@3.0 xz gdbm tcl-tk
185
- name: Configure CPython
186
run: |
187
CPPFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
188
LDFLAGS="-L$(brew --prefix gdbm)/lib -L$(brew --prefix xz)/lib" \
189
./configure \
190
--with-pydebug \
191
--prefix=/opt/python-dev \
192
- --with-openssl="$(brew --prefix openssl@1.1)"
+ --with-openssl="$(brew --prefix openssl@3.0)"
193
- name: Build CPython
194
run: make -j4
195
- name: Display build info
0 commit comments