<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/distutils/misc_util.py, branch dependabot/pip/gitpython-3.1.14</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>BUG: Fix non-versioneer uses</title>
<updated>2021-02-25T18:06:07+00:00</updated>
<author>
<name>Eric Larson</name>
<email>larson.eric.d@gmail.com</email>
</author>
<published>2021-02-25T18:03:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8faae9d5fad6a8342b21deed1dcbecaaa9a32711'/>
<id>8faae9d5fad6a8342b21deed1dcbecaaa9a32711</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove dummy_threading</title>
<updated>2021-02-11T14:47:42+00:00</updated>
<author>
<name>Kevin Sheppard</name>
<email>kevin.k.sheppard@gmail.com</email>
</author>
<published>2021-02-11T14:47:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ab5bc96953995740e755027f1264ddfc3ddea895'/>
<id>ab5bc96953995740e755027f1264ddfc3ddea895</id>
<content type='text'>
Threading is guaranteed to be supported in Python 3.7+
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Threading is guaranteed to be supported in Python 3.7+
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: regex char class improve</title>
<updated>2020-12-28T18:00:03+00:00</updated>
<author>
<name>Tyler Reddy</name>
<email>tyler.je.reddy@gmail.com</email>
</author>
<published>2020-12-28T18:00:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e63001a5701da3c3c1ac29c9e4bbe225f062a653'/>
<id>e63001a5701da3c3c1ac29c9e4bbe225f062a653</id>
<content type='text'>
* replace superfluous single-character regex character
classes with their literal string equivalents; this
avoids the overhead associated with a character class
when there's only a single character enclosed (so there's
no benefit to the class overhead)

* for more information see:
Chapter 6 of:
Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed.,
O’Reilly Media, 2009.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* replace superfluous single-character regex character
classes with their literal string equivalents; this
avoids the overhead associated with a character class
when there's only a single character enclosed (so there's
no benefit to the class overhead)

* for more information see:
Chapter 6 of:
Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed.,
O’Reilly Media, 2009.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Use versioneer to manage numpy versions.</title>
<updated>2020-12-08T17:25:28+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-12-02T20:06:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=40fd17e3a2418d54284b53dbcf2ba72dbfbb58ad'/>
<id>40fd17e3a2418d54284b53dbcf2ba72dbfbb58ad</id>
<content type='text'>
The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the
number of commits since the 1.21.0 branch was started and 'aa0453721f'.
The chosen form may be specified in the 'setup.cfg' file. This PR adds
two new files 'numpy/_version.py' and 'numpy/version.py'. The latter
is kept because it is part of the public API and is actually used by
some downstream projects, but it is no longer dynamically created.

See https://github.com/python-versioneer/python-versioneer/ for more
information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The new tags look like '1.21.0.dev0+98.gaa0453721f', where '98' is the
number of commits since the 1.21.0 branch was started and 'aa0453721f'.
The chosen form may be specified in the 'setup.cfg' file. This PR adds
two new files 'numpy/_version.py' and 'numpy/version.py'. The latter
is kept because it is part of the public API and is actually used by
some downstream projects, but it is no longer dynamically created.

See https://github.com/python-versioneer/python-versioneer/ for more
information.
</pre>
</div>
</content>
</entry>
<entry>
<title>BLD: Use importlib to find numpy root directory in distutils</title>
<updated>2020-11-08T04:48:38+00:00</updated>
<author>
<name>Dustin Spicuzza</name>
<email>dustin@virtualroadside.com</email>
</author>
<published>2020-10-25T06:47:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=761641f4ce8e17ee53fd6964dcac90c8c7eebdf6'/>
<id>761641f4ce8e17ee53fd6964dcac90c8c7eebdf6</id>
<content type='text'>
Part of changes for #17620 to prevent importing numpy during builds to support cross compilation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Part of changes for #17620 to prevent importing numpy during builds to support cross compilation.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: valid doctest for config_py function show() (#17621)</title>
<updated>2020-10-26T16:23:40+00:00</updated>
<author>
<name>Hassan Kibirige</name>
<email>has2k1@gmail.com</email>
</author>
<published>2020-10-26T16:23:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2dcbc560320cb70c2664ed442b9083f80b23840b'/>
<id>2dcbc560320cb70c2664ed442b9083f80b23840b</id>
<content type='text'>
numpy.distutils generates a function `__config__.show`. This change
makes the docstring of that function complete (with the required
imports) and runnable. This prevents numpy.distutils from adding
doctests that will fail -- if picked-up by the test runner.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
numpy.distutils generates a function `__config__.show`. This change
makes the docstring of that function complete (with the required
imports) and runnable. This prevents numpy.distutils from adding
doctests that will fail -- if picked-up by the test runner.</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: change "for line in open()" to "with open() as f: ..." in numpy/distutils/misc_util.py  (gh-#17051)</title>
<updated>2020-08-11T16:34:40+00:00</updated>
<author>
<name>jakobjakobson13</name>
<email>43045863+jakobjakobson13@users.noreply.github.com</email>
</author>
<published>2020-08-11T16:34:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=25fa87a92d39c4a7de72f79263c9048d657b1226'/>
<id>25fa87a92d39c4a7de72f79263c9048d657b1226</id>
<content type='text'>
see #17012 item 13

Co-authored-by: Jakob &lt;jakobjakobson13@posteo.de&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
see #17012 item 13

Co-authored-by: Jakob &lt;jakobjakobson13@posteo.de&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>DEP: Remove deprecated python function 'file()'</title>
<updated>2020-07-14T11:22:34+00:00</updated>
<author>
<name>marload</name>
<email>rladhkstn8@gmail.com</email>
</author>
<published>2020-07-14T11:22:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7ade896ea8d695b32b82b423c01dfef2a98216ac'/>
<id>7ade896ea8d695b32b82b423c01dfef2a98216ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: use list-based APIs to call subprocesses (#15714)</title>
<updated>2020-03-07T21:15:26+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2020-03-07T21:15:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8087e1de04d011f7ce66bf80dbef4a0599b14f7a'/>
<id>8087e1de04d011f7ce66bf80dbef4a0599b14f7a</id>
<content type='text'>
* MAINT: use list-based APIs to call subprocesses
* TST, MAINT: add a test for mingw32ccompiler.build_import, clean up lib2def
Co-authored-by: Matti Picus &lt;matti.picus@gmail.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* MAINT: use list-based APIs to call subprocesses
* TST, MAINT: add a test for mingw32ccompiler.build_import, clean up lib2def
Co-authored-by: Matti Picus &lt;matti.picus@gmail.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: distutils: Add a docstring to show_config().</title>
<updated>2020-01-25T14:06:51+00:00</updated>
<author>
<name>Warren Weckesser</name>
<email>warren.weckesser@gmail.com</email>
</author>
<published>2020-01-24T20:56:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6d0b0b474e471fb233c3c0e4113f09e143ba526e'/>
<id>6d0b0b474e471fb233c3c0e4113f09e143ba526e</id>
<content type='text'>
Thanks to Sergey Kojoian for the original patch to create
the docstring.

Closes gh-9258.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Thanks to Sergey Kojoian for the original patch to create
the docstring.

Closes gh-9258.
</pre>
</div>
</content>
</entry>
</feed>
