<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/distutils/fcompiler/intel.py, branch meson</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>shorten line</title>
<updated>2022-06-08T19:43:44+00:00</updated>
<author>
<name>i-shenl</name>
<email>i-shenl@activestate.com</email>
</author>
<published>2022-06-08T19:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1ead2060a879823504682465eb2cab18a9d39c76'/>
<id>1ead2060a879823504682465eb2cab18a9d39c76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable fortran preprocessing on Windows</title>
<updated>2022-06-08T19:25:21+00:00</updated>
<author>
<name>i-shenl</name>
<email>i-shenl@activestate.com</email>
</author>
<published>2022-06-08T19:25:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b5658d4ce4da9c8801f4a26b2e7fde8c3c31f198'/>
<id>b5658d4ce4da9c8801f4a26b2e7fde8c3c31f198</id>
<content type='text'>
Especially needed for compiling scipy on Windows. On Linux and Mac,
fortran preprocessing is already enabled.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Especially needed for compiling scipy on Windows. On Linux and Mac,
fortran preprocessing is already enabled.
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: lint line length</title>
<updated>2021-04-11T22:34:35+00:00</updated>
<author>
<name>h6197627</name>
<email>44726212+h6197627@users.noreply.github.com</email>
</author>
<published>2021-04-11T22:34:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bd7b3993c358ad880c0dc80e1661bd02e9388f4d'/>
<id>bd7b3993c358ad880c0dc80e1661bd02e9388f4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: Negative zero handling with ifort</title>
<updated>2021-04-11T22:02:36+00:00</updated>
<author>
<name>h6197627</name>
<email>44726212+h6197627@users.noreply.github.com</email>
</author>
<published>2021-04-11T22:02:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0d3e433862105579a80b791d76f921dcc261928b'/>
<id>0d3e433862105579a80b791d76f921dcc261928b</id>
<content type='text'>
Fixes https://github.com/scipy/scipy/issues/11339

**What does this implement/fix?**

NumPy/SciPy compiled with Intel Fortran compiler using default flags treats both -0.0 and +0.0 as 0.0, however it is not IEEE 754 compliant and some SciPy logic relies on this -0.0 and +0.0 differentiation.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://github.com/scipy/scipy/issues/11339

**What does this implement/fix?**

NumPy/SciPy compiled with Intel Fortran compiler using default flags treats both -0.0 and +0.0 as 0.0, however it is not IEEE 754 compliant and some SciPy logic relies on this -0.0 and +0.0 differentiation.</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Flags should not contain spaces</title>
<updated>2020-01-23T18:24:37+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2020-01-23T18:24:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=cf8ab82c8227fc4e8fbad474f5f50f90e75d1b3a'/>
<id>cf8ab82c8227fc4e8fbad474f5f50f90e75d1b3a</id>
<content type='text'>
It's very unlikely that `ifort` is supposed to be invoked as `ifort "-fpmodel strict"` instead of `ifort -fpmodel strict` .

Spaces in flag items will end up passed as a single argument.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's very unlikely that `ifort` is supposed to be invoked as `ifort "-fpmodel strict"` instead of `ifort -fpmodel strict` .

Spaces in flag items will end up passed as a single argument.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove unnecessary 'from __future__ import ...' statements</title>
<updated>2020-01-03T15:48:11+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-08-27T11:36:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ed1e9659f103260a32536b4a7615393e3b1173dc'/>
<id>ed1e9659f103260a32536b4a7615393e3b1173dc</id>
<content type='text'>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Do not double-quote arguments passed on to the linker</title>
<updated>2019-01-31T06:27:55+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2019-01-31T03:34:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=37ba40b7f975f266d24fa916050fa27c88ab9dbf'/>
<id>37ba40b7f975f266d24fa916050fa27c88ab9dbf</id>
<content type='text'>
After the recent patch to CCompiler.spawn, the file-paths no longer need manual quoting - that's handled as needed within subprocess.

This also states our assumption that our paths do not contain commas.
If we care about this, we could adopt the approach used by https://github.com/rust-lang/rust/issues/38795.

Tested for gcc locally by looking at the error messages of `subprocess.check_call(["gcc", r'-Wl,spaces and no quotes'])`

Other fortran compiler changes not tested, but assumed to be broken in the same way.

Fixes #12882
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After the recent patch to CCompiler.spawn, the file-paths no longer need manual quoting - that's handled as needed within subprocess.

This also states our assumption that our paths do not contain commas.
If we care about this, we could adopt the approach used by https://github.com/rust-lang/rust/issues/38795.

Tested for gcc locally by looking at the error messages of `subprocess.check_call(["gcc", r'-Wl,spaces and no quotes'])`

Other fortran compiler changes not tested, but assumed to be broken in the same way.

Fixes #12882
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: distutils: trivial cleanups</title>
<updated>2017-11-06T22:22:10+00:00</updated>
<author>
<name>xoviat</name>
<email>xoviat@users.noreply.github.com</email>
</author>
<published>2017-11-06T22:22:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1229545f8998940b8bfaf0556103e4bdf266b5e1'/>
<id>1229545f8998940b8bfaf0556103e4bdf266b5e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: remove -xhost flag from IntelFCompiler.  Closes gh-9042.</title>
<updated>2017-07-27T07:25:59+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2017-07-27T07:25:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8a511c68fada693bfa7283c313bf1de99ad90a6e'/>
<id>8a511c68fada693bfa7283c313bf1de99ad90a6e</id>
<content type='text'>
Note that this was discussed extensively in gh-7287, but removing
this -xhost flag was missed in the PR that closed that issue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note that this was discussed extensively in gh-7287, but removing
this -xhost flag was missed in the PR that closed that issue.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix Intel compilation on Unix.</title>
<updated>2017-06-26T16:20:41+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2017-06-21T15:55:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bb21232753efea0b2af0aee458d52c694ad6959a'/>
<id>bb21232753efea0b2af0aee458d52c694ad6959a</id>
<content type='text'>
Fixes two problems:

* c compilers do not have a find_executables method.
* get_version return a LooseVersion instance, not string.

Closes #9278.

[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes two problems:

* c compilers do not have a find_executables method.
* get_version return a LooseVersion instance, not string.

Closes #9278.

[ci skip]
</pre>
</div>
</content>
</entry>
</feed>
