Skip to content

Commit 69b95da

Browse files
A wheel for macOS Intel Python 3.7 is available.
1 parent 7d923e0 commit 69b95da

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See [python-oracledb Installation][installation].
1919
- Python versions 3.6 through 3.10.
2020

2121
Prebuilt packages are available on Windows for Python 3.7 or later, on macOS
22-
for Python 3.8 or later, and on Linux for Python 3.6 or later.
22+
for Python 3.7 or later, and on Linux for Python 3.6 or later.
2323

2424
Source code is also available.
2525

doc/src/release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Common Changes
4747
``wrapped()``.
4848
#) Improved samples, including adding a Dockerfile that starts a container
4949
with a running database and the samples.
50+
#) A binary package has been added for Python 3.7 on macOS (Intel x86).
5051
#) Improved documentation.
5152

5253

doc/src/user_guide/installation.rst

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ quickly.
3636
available. The version of Python to be used depends on the operating system (OS):
3737

3838
- On Windows, use Python 3.7 to 3.10
39-
- On macOS, use Python 3.8 to 3.10
39+
- On macOS, use Python 3.7 to 3.10
4040
- On Linux, use Python 3.6 to 3.10
4141

4242
By default, python-oracledb connects directly to Oracle Database. This lets
@@ -153,7 +153,7 @@ To use python-oracledb, you need:
153153
- Python 3.6, 3.7, 3.8, 3.9 or 3.10 depending on the operating system:
154154

155155
- Windows: Use Python 3.7 to 3.10
156-
- macOS: Use Python 3.8 to 3.10
156+
- macOS: Use Python 3.7 to 3.10
157157
- Linux: Use Python 3.6 to 3.10
158158

159159
- The Python cryptography package. This package is automatically installed as a
@@ -614,8 +614,9 @@ Python architecture.
614614
Installing python-oracledb on macOS
615615
===================================
616616

617-
Python-oracledb is available a Universal binary for Apple Intel and M1
618-
architectures.
617+
Python-oracledb is available as a Universal binary for Python 3.8, or later, on
618+
Apple Intel and M1 architectures. A binary is also available for Python 3.7 on
619+
Apple Intel.
619620

620621
Install python-oracledb
621622
-----------------------
@@ -628,17 +629,20 @@ to install python-oracledb from Python's package repository `PyPI
628629
629630
python -m pip install oracledb
630631
631-
632-
To install into the system Python, you may need to use ``/usr/bin/python3``
633-
instead of ``python``.
634-
635632
The ``--user`` option may be useful if you do not have permission to write to
636633
system directories:
637634

638635
.. code-block:: shell
639636
640637
python -m pip install oracledb --user
641638
639+
To install into the system Python, you may need to use ``/usr/bin/python3``
640+
instead of ``python``:
641+
642+
.. code-block:: shell
643+
644+
/usr/bin/python3 -m pip install oracledb --user
645+
642646
If you are behind a proxy, add a proxy server to the command, for example add
643647
``--proxy=http://proxy.example.com:80``
644648

@@ -652,8 +656,8 @@ By default, python-oracledb runs in a Thin mode which connects directly to
652656
Oracle Database so no further installation steps are required. However, to use
653657
additional features available in :ref:`Thick mode <featuresummary>` you need
654658
Oracle Client libraries installed. Note that to use Thick mode on the M1
655-
architecture you will need to use Rosetta with Python x64 and the Instant
656-
Client (Intel x64) libraries.
659+
architecture you will need to use Rosetta with Python 64-bit Intel and the
660+
Instant Client (Intel x86) libraries.
657661

658662
Manual Installation
659663
+++++++++++++++++++

samples/tutorial/Python-and-Oracle-Database-The-New-Wave-of-Scripting.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h2><a name="preface">Setup</a></h2>
175175
<p>Install Python 3 if not already available. It can be obtained from
176176
your operating system package library or from <a
177177
href="https://www.python.org/">python.org</a>. On Windows, use Python 3.7
178-
or later. On macOS, use Python 3.8 or later. On Linux, use Python 3.6 or
178+
or later. On macOS, use Python 3.7 or later. On Linux, use Python 3.6 or
179179
later.</p>
180180

181181
<p>Install <a

0 commit comments

Comments
 (0)