Skip to content

Commit a43c50e

Browse files
OSX → macOS
1 parent 132ded6 commit a43c50e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and test
22

33
# This file tests the claimed support range of NiBabel including
44
#
5-
# * Operating systems: Linux, Windows (x64 & x86), OSX
5+
# * Operating systems: Linux, Windows (x64 & x86), macOS
66
# * Dependencies: minimum requirements, optional requirements
77
# * Installation methods: setup.py, sdist, wheel, archive
88

@@ -142,7 +142,7 @@ jobs:
142142
dependencies: 'min'
143143
exclude:
144144
# Use ubuntu-latest to cover the whole range of Python. For Windows
145-
# and OSX, checking oldest and newest should be sufficient.
145+
# and macOS, checking oldest and newest should be sufficient.
146146
- os: windows-latest
147147
python-version: "3.10"
148148
- os: windows-latest

doc/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you are not using a Linux package manager, then best way to install NiBabel
3636
is via pip_. If you don't have pip already, follow the `pip install
3737
instructions`_.
3838

39-
Then open a terminal (``Terminal.app`` on OSX, ``cmd`` or ``Powershell`` on
39+
Then open a terminal (``Terminal.app`` on macOS, ``cmd`` or ``Powershell`` on
4040
Windows), and type::
4141

4242
pip install nibabel

nibabel/tests/test_floating.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_check_nmant_nexp():
117117
ti = type_info(t)
118118
if ti['nmant'] not in (105, 106): # This check does not work for PPC double pair
119119
assert _check_nmant(t, ti['nmant'])
120-
# Test fails for longdouble after blacklisting of OSX powl as of numpy
120+
# Test fails for longdouble after blacklisting of macOS powl as of numpy
121121
# 1.12 - see https://github.com/numpy/numpy/issues/8307
122122
if t != np.longdouble or sys.platform != 'darwin':
123123
assert _check_maxexp(t, ti['maxexp'])

nibabel/tests/test_volumeutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ def test_fname_ext_ul_case():
10131013
with InTemporaryDirectory():
10141014
with open('afile.TXT', 'w') as fobj:
10151015
fobj.write('Interesting information')
1016-
# OSX usually has case-insensitive file systems; Windows also
1016+
# macOS usually has case-insensitive file systems; Windows also
10171017
os_cares_case = not exists('afile.txt')
10181018
with open('bfile.txt', 'w') as fobj:
10191019
fobj.write('More interesting information')

0 commit comments

Comments
 (0)