Skip to content

Commit a710344

Browse files
committed
Reference changed: OS X --> macOS
1 parent 7ea6868 commit a710344

8 files changed

Lines changed: 16 additions & 15 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ build/
33
.nox
44
*.pyc
55
__pycache__
6+
.idea

source/discussions/deploying-python-applications.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ OS Packaging & Installers
4545

4646
- Building rpm/debs for projects
4747
- Building rpms/debs for whole virtualenvs
48-
- Building Mac OS X installers for Python projects
48+
- Building macOS installers for Python projects
4949
- Building Android APKs with Kivy+P4A or P4A & Buildozer
5050

5151
Windows

source/guides/installing-scientific-packages.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ limitation.
8989
The `wheel` project also provides a `wheel convert` subcommand that can
9090
convert a Windows `bdist_wininst` installer to a wheel.
9191

92-
Mac OS X installers and package managers
93-
----------------------------------------
92+
macOS installers and package managers
93+
-------------------------------------
9494

9595
Similar to the situation on Windows, many projects (including NumPy) publish
96-
Mac OS X installers that are compatible with the Mac OS X CPython binaries
96+
macOS installers that are compatible with the macOS CPython binaries
9797
published on python.org.
9898

99-
Mac OS X users also have access to Linux distribution style package managers
99+
macOS users also have access to Linux distribution style package managers
100100
such as ``MacPorts``. The SciPy site has more details on using MacPorts to
101101
install the `scientific Python stack
102102
<http://www.scipy.org/install.html#mac-packages>`__
@@ -144,7 +144,7 @@ updated from the Anaconda repository.
144144
environment management system included in Anaconda that allows users to
145145
install multiple versions of binary software packages and their dependencies,
146146
and easily switch between them. It is a cross-platform tool working on Windows,
147-
OSX, and Linux. Conda can be used to package up and distribute all kinds of
147+
macOS, and Linux. Conda can be used to package up and distribute all kinds of
148148
packages, it is not limited to just Python packages. It has full support
149149
for native virtual environments. Conda makes environments first-class citizens,
150150
making it easy to create independent environments even for C libraries. It is

source/guides/packaging-binary-extensions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ be able to build Python extensions for all Python versions from 3.5 onwards.
275275
FIXME
276276

277277
cover Windows binary compatibility requirements
278-
cover Mac OS X binary compatibility requirements
278+
cover macOS binary compatibility requirements
279279
cover the vagaries of Linux distros and other *nix systems
280280

281281

@@ -291,7 +291,7 @@ For interim guidance on this topic, see the discussion in
291291
FIXME
292292

293293
cover publishing as wheel files on PyPI or a custom index server
294-
cover creation of Windows and Mac OS X installers
294+
cover creation of Windows and macOS installers
295295
mention the fact that Linux distros have a requirement to build from
296296
source in their own build systems, so binary-only releases are strongly
297297
discouraged

source/guides/supporting-multiple-python-versions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ of many continuous-integration systems. There are two hosted services which
6363
when used in conjunction provide automated testing across Linux, Mac and
6464
Windows:
6565

66-
- `Travis CI <https://travis-ci.org>`_ provides both a Linux and a Mac OSX
66+
- `Travis CI <https://travis-ci.org>`_ provides both a Linux and a macOS
6767
environment. The Linux environment is Ubuntu 12.04 LTS Server Edition 64 bit
68-
while the OSX is 10.9.2 at the time of writing.
68+
while the macOS is 10.9.2 at the time of writing.
6969
- `Appveyor <http://www.appveyor.com>`_ provides a Windows environment
7070
(Windows Server 2012).
7171

@@ -74,7 +74,7 @@ Windows:
7474
TODO Either link to or provide example .yml files for these two
7575
services.
7676

77-
TODO How do we keep the Travis Linux and OSX versions up-to-date in this
77+
TODO How do we keep the Travis Linux and macOS versions up-to-date in this
7878
document?
7979

8080
Both `Travis CI`_ and Appveyor_ require a `YAML

source/guides/tool-recommendations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ milestone.
158158
choice for packaging.
159159
160160
.. [7] :term:`PyPI <Python Package Index (PyPI)>` currently only allows
161-
uploading Windows and Mac OS X wheels, and they should be compatible with
161+
uploading Windows and macOS wheels, and they should be compatible with
162162
the binary installers provided for download from python.org. Enhancements
163163
will have to be made to the :pep:`wheel compatibility tagging scheme
164164
<425>` before linux wheels will be allowed.

source/tutorials/distributing-packages.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ Platform Wheels
768768
~~~~~~~~~~~~~~~
769769

770770
*Platform Wheels* are wheels that are specific to a certain platform like linux,
771-
OSX, or Windows, usually due to containing compiled extensions.
771+
macOS, or Windows, usually due to containing compiled extensions.
772772

773773
To build the wheel:
774774

@@ -784,7 +784,7 @@ on. For details on the naming of wheel files, see :pep:`425`
784784
.. note::
785785

786786
:term:`PyPI <Python Package Index (PyPI)>` currently supports uploads of
787-
platform wheels for Windows, OS X, and the multi-distro ``manylinux1`` ABI.
787+
platform wheels for Windows, macOS, and the multi-distro ``manylinux1`` ABI.
788788
Details of the latter are defined in :pep:`513`.
789789

790790

source/tutorials/installing-packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Install pip, setuptools, and wheel
3434
<https://www.python.org>`_, you will already have :ref:`pip` and
3535
:ref:`setuptools`, but will need to upgrade to the latest version:
3636

37-
On Linux or OS X:
37+
On Linux or macOS:
3838

3939
::
4040

0 commit comments

Comments
 (0)