<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-setuptools-git.git/setuptools/tests/test_build_meta.py, branch di-patch-1</title>
<subtitle>github.com: pypa/setuptools.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/'/>
<entry>
<title>Add support for setup.cfg-only projects</title>
<updated>2019-02-07T13:08:14+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-01-31T13:29:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=179115b198387a21202433ea61cc53f2efd383fc'/>
<id>179115b198387a21202433ea61cc53f2efd383fc</id>
<content type='text'>
Many projects can get away with an empty `setup.py` and use *only* the
declarative `setup.cfg`. With the new PEP 517 backend, we can supply a
default empty `setup.py` if one is not provided.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Many projects can get away with an empty `setup.py` and use *only* the
declarative `setup.cfg`. With the new PEP 517 backend, we can supply a
default empty `setup.py` if one is not provided.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename build_meta:legacy to build_meta:__legacy__</title>
<updated>2019-02-05T13:42:36+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-02-05T13:42:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=e04a41e3129fa9945e15b16fd6d65cc212c1d946'/>
<id>e04a41e3129fa9945e15b16fd6d65cc212c1d946</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move build_meta_legacy to build_meta:legacy</title>
<updated>2019-02-03T17:25:06+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-02-03T17:17:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=11fb3f38d23ff1e0d81e64ba3b68b3de2d2b990a'/>
<id>11fb3f38d23ff1e0d81e64ba3b68b3de2d2b990a</id>
<content type='text'>
Rather than exposing a top-level module for the legacy backend, we will
move the legacy backend into the `setuptools.build_meta` module and
specify it using the module:object syntax.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rather than exposing a top-level module for the legacy backend, we will
move the legacy backend into the `setuptools.build_meta` module and
specify it using the module:object syntax.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add build_meta_legacy backend</title>
<updated>2019-02-03T17:25:06+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-01-27T17:31:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=fd3b06dae1a33b3131cf96ddb9d7938430b9d8b5'/>
<id>fd3b06dae1a33b3131cf96ddb9d7938430b9d8b5</id>
<content type='text'>
This is part of the solution to GH #1642, it is a
backwards-compatibility backend that can be used as a default PEP 517
backend for projects that use setuptools but haven't opted in to
build_meta.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is part of the solution to GH #1642, it is a
backwards-compatibility backend that can be used as a default PEP 517
backend for projects that use setuptools but haven't opted in to
build_meta.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add failing test suite for build_meta_legacy</title>
<updated>2019-02-03T17:25:05+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-01-27T17:16:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=a114112ea5e6df87a826e0fa2927cffd2472aec1'/>
<id>a114112ea5e6df87a826e0fa2927cffd2472aec1</id>
<content type='text'>
This runs all build_meta tests, plus a test that it is possible to
import from the directory containing `setup.py` when using the
build_meta_legacy backend.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This runs all build_meta tests, plus a test that it is possible to
import from the directory containing `setup.py` when using the
build_meta_legacy backend.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for relative path imports in build_meta</title>
<updated>2019-02-03T17:25:05+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-01-27T17:24:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=bd800f4c793fdcff2347a263c39c4256107b417f'/>
<id>bd800f4c793fdcff2347a263c39c4256107b417f</id>
<content type='text'>
Failing test adapted from PR #1643

Co-authored-by: Tzu-ping Chung &lt;uranusjr@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Failing test adapted from PR #1643

Co-authored-by: Tzu-ping Chung &lt;uranusjr@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Wrap build_meta tests in a reusable test class</title>
<updated>2019-02-03T17:25:05+00:00</updated>
<author>
<name>Paul Ganssle</name>
<email>paul@ganssle.io</email>
</author>
<published>2019-01-27T17:11:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=6d0daf14277223da4e32093c00157ae5b26d1ece'/>
<id>6d0daf14277223da4e32093c00157ae5b26d1ece</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test capturing failure. Ref #1623.</title>
<updated>2019-01-02T19:27:07+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-01-02T19:27:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=38bbfded981e14bacf937a0a9a944b7766c39806'/>
<id>38bbfded981e14bacf937a0a9a944b7766c39806</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Feed the hobgoblins (delint).</title>
<updated>2019-01-02T19:23:14+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-01-02T19:23:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=2db2a8f37d64d8abd281660d48009003cc8805ca'/>
<id>2db2a8f37d64d8abd281660d48009003cc8805ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the tests</title>
<updated>2018-11-14T18:30:18+00:00</updated>
<author>
<name>Paul Moore</name>
<email>p.f.moore@gmail.com</email>
</author>
<published>2018-11-14T18:30:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-setuptools-git.git/commit/?id=f524f83eac216a046041122793fdd0ba74495cb0'/>
<id>f524f83eac216a046041122793fdd0ba74495cb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
