Skip to content

Commit d1a6aad

Browse files
authored
Merge pull request pypa#345 from fmaida/master
Changing the reference from "OS X" to "macOS"
2 parents 67cf6aa + 75c9ab7 commit d1a6aad

8 files changed

+19
-15
lines changed

scripts/linkmonitor/inventory.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
guides/index.html#guides, guides/installing-scientific-packages.html, guides/installing-scientific-packages.html#building-from-source,
6565
guides/installing-scientific-packages.html#contents, guides/installing-scientific-packages.html#installing-scientific-packages,
6666
guides/installing-scientific-packages.html#linux-distribution-packages, guides/installing-scientific-packages.html#mac-os-x-installers-and-package-managers,
67+
guides/installing-scientific-packages.html#macos-installers-and-package-managers,
6768
guides/installing-scientific-packages.html#numpy-and-the-science-stack, guides/installing-scientific-packages.html#scipy-distributions,
6869
guides/installing-scientific-packages.html#spack, guides/installing-scientific-packages.html#the-conda-cross-platform-package-manager,
6970
guides/installing-scientific-packages.html#windows-installers, guides/installing-using-linux-tools.html,

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: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,17 @@ 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+
.. preserve old links to this heading
93+
.. _mac-os-x-installers-and-package-managers:
94+
95+
macOS installers and package managers
96+
-------------------------------------
9497

9598
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
99+
macOS installers that are compatible with the macOS CPython binaries
97100
published on python.org.
98101

99-
Mac OS X users also have access to Linux distribution style package managers
102+
macOS users also have access to Linux distribution style package managers
100103
such as ``MacPorts``. The SciPy site has more details on using MacPorts to
101104
install the `scientific Python stack
102105
<http://www.scipy.org/install.html#mac-packages>`__
@@ -144,7 +147,7 @@ updated from the Anaconda repository.
144147
environment management system included in Anaconda that allows users to
145148
install multiple versions of binary software packages and their dependencies,
146149
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
150+
macOS, and Linux. Conda can be used to package up and distribute all kinds of
148151
packages, it is not limited to just Python packages. It has full support
149152
for native virtual environments. Conda makes environments first-class citizens,
150153
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)