summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-01-30 23:07:53 +0200
committerGitHub <noreply@github.com>2022-01-30 23:07:53 +0200
commitfb0cdc331e0f559e2237fa2e077a4e712f1fee36 (patch)
tree60c515abd836b6ab6fc9b0d505c8975acbb8cb5f /numpy
parentbc6a6084f6e49bd78c12508131395304a63cc6ca (diff)
parent271c0809d29acbf75d2b4d637fa78a5fc5ce6ebb (diff)
downloadnumpy-fb0cdc331e0f559e2237fa2e077a4e712f1fee36.tar.gz
Merge pull request #20946 from caioagiani/patch-1
MAINT: Fix typo in setup.py
Diffstat (limited to 'numpy')
-rw-r--r--numpy/random/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py
index 01808e83c..233344430 100644
--- a/numpy/random/setup.py
+++ b/numpy/random/setup.py
@@ -53,7 +53,7 @@ def configuration(parent_package='', top_path=None):
if sys.platform == 'cygwin':
# Export symbols without __declspec(dllexport) for using by cython.
# Using __declspec(dllexport) does not export other necessary symbols
- # in Cygwin package's Cython enviroment, making it impossible to
+ # in Cygwin package's Cython environment, making it impossible to
# import modules.
EXTRA_LINK_ARGS += ['-Wl,--export-all-symbols']