Skip to content

Commit 7f03e7a

Browse files
authored
Use latest version of OenSSL (#1349)
The dev guide pins the version of OpenSSL to version 3.0, but the current latest version i 3.3.1 (July 2024). The change pins the OpenSSL version to 3.
1 parent b2d4974 commit 7f03e7a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

getting-started/setup-building.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ on Linux, macOS and iOS.
691691

692692
For **Homebrew**, install dependencies using ``brew``::
693693

694-
$ brew install pkg-config openssl@3.0 xz gdbm tcl-tk mpdecimal
694+
$ brew install pkg-config openssl@3 xz gdbm tcl-tk mpdecimal
695695

696696
.. tab:: Python 3.13+
697697

@@ -701,7 +701,7 @@ on Linux, macOS and iOS.
701701
GDBM_LIBS="-L$(brew --prefix gdbm)/lib -lgdbm" \
702702
./configure --with-pydebug \
703703
--with-system-libmpdec \
704-
--with-openssl="$(brew --prefix openssl@3.0)"
704+
--with-openssl="$(brew --prefix openssl@3)"
705705

706706
.. tab:: Python 3.11-3.12
707707

@@ -710,7 +710,7 @@ on Linux, macOS and iOS.
710710
$ GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \
711711
GDBM_LIBS="-L$(brew --prefix gdbm)/lib -lgdbm" \
712712
./configure --with-pydebug \
713-
--with-openssl="$(brew --prefix openssl@3.0)"
713+
--with-openssl="$(brew --prefix openssl@3)"
714714

715715
.. tab:: Python 3.8-3.10
716716

@@ -719,7 +719,7 @@ on Linux, macOS and iOS.
719719
$ CPPFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
720720
LDFLAGS="-L$(brew --prefix gdbm)/lib -L$(brew --prefix xz)/lib" \
721721
./configure --with-pydebug \
722-
--with-openssl="$(brew --prefix openssl@3.0)" \
722+
--with-openssl="$(brew --prefix openssl@3)" \
723723
--with-tcltk-libs="$(pkg-config --libs tcl tk)" \
724724
--with-tcltk-includes="$(pkg-config --cflags tcl tk)"
725725

0 commit comments

Comments
 (0)