<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/fixtures-git.git/.github/workflows/ci.yaml, branch master</title>
<subtitle>github.com: testing-cabal/fixtures.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/'/>
<entry>
<title>github: Update actions, switch to 3.11 by default</title>
<updated>2023-03-31T10:02:54+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>stephen@that.guru</email>
</author>
<published>2023-03-31T10:02:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=fbdc1e8626f78901ed4e675ef2f97b45343ea219'/>
<id>fbdc1e8626f78901ed4e675ef2f97b45343ea219</id>
<content type='text'>
Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop support for Python 3.6</title>
<updated>2022-07-20T11:31:34+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>stephen@that.guru</email>
</author>
<published>2022-07-20T11:31:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=ce9f60b73d68f2d324a107ca0c0b2f4e5e5341a3'/>
<id>ce9f60b73d68f2d324a107ca0c0b2f4e5e5341a3</id>
<content type='text'>
It's EOL

Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's EOL

Signed-off-by: Stephen Finucane &lt;stephen@that.guru&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>github: Add all pypy3 versions to test matrix</title>
<updated>2022-05-22T21:24:09+00:00</updated>
<author>
<name>Michał Górny</name>
<email>mgorny@gentoo.org</email>
</author>
<published>2022-05-22T16:09:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=2e807a190431f3f21dd9d147ea27c636df52f61c'/>
<id>2e807a190431f3f21dd9d147ea27c636df52f61c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>github: Add Python 3.11 betas to test matrix</title>
<updated>2022-05-22T21:24:09+00:00</updated>
<author>
<name>Michał Górny</name>
<email>mgorny@gentoo.org</email>
</author>
<published>2022-05-22T16:08:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=051114cd70aa356757ca0ced6670c7a6a4e785f7'/>
<id>051114cd70aa356757ca0ced6670c7a6a4e785f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop using 'make' to run tests</title>
<updated>2022-02-08T11:44:39+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>stephenfin@redhat.com</email>
</author>
<published>2022-02-07T11:06:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=b3de384177622d8b4e8c53e69a39261ccfdb5829'/>
<id>b3de384177622d8b4e8c53e69a39261ccfdb5829</id>
<content type='text'>
tox can run the command directly.

Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tox can run the command directly.

Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Clone entire repo for CI</title>
<updated>2022-02-08T11:44:04+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>stephenfin@redhat.com</email>
</author>
<published>2022-02-08T11:35:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=f5a07ec2ab0cc02e8f7e8011b3fdae4ed6c4802e'/>
<id>f5a07ec2ab0cc02e8f7e8011b3fdae4ed6c4802e</id>
<content type='text'>
The "Checkout" action defaults to a shallow clone, checking out a HEAD.
This borks pbr (and likely similar packages like 'setuptools_scm') since
they don't have the full history to build a version number from. Fix
this by configuring the 'fetch_depth' setting [1].

[1] https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches

Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "Checkout" action defaults to a shallow clone, checking out a HEAD.
This borks pbr (and likely similar packages like 'setuptools_scm') since
they don't have the full history to build a version number from. Fix
this by configuring the 'fetch_depth' setting [1].

[1] https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches

Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix YAML type confusion</title>
<updated>2022-02-05T23:52:45+00:00</updated>
<author>
<name>Colin Watson</name>
<email>cjwatson@canonical.com</email>
</author>
<published>2022-02-05T23:52:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=1ef6efbc4a2a78c8b1cf094b2cc8b807934f3ec0'/>
<id>1ef6efbc4a2a78c8b1cf094b2cc8b807934f3ec0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for Python 3.10</title>
<updated>2022-02-05T23:17:08+00:00</updated>
<author>
<name>Colin Watson</name>
<email>cjwatson@canonical.com</email>
</author>
<published>2022-02-05T23:17:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=a760506564ccb5bf19484984c467588307b6508f'/>
<id>a760506564ccb5bf19484984c467588307b6508f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add GitHub Action workflow</title>
<updated>2022-01-28T16:00:20+00:00</updated>
<author>
<name>Stephen Finucane</name>
<email>stephenfin@redhat.com</email>
</author>
<published>2022-01-28T13:43:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/fixtures-git.git/commit/?id=7d70a59b4b4d6305e6a0bf52be1d7e4e33b933a7'/>
<id>7d70a59b4b4d6305e6a0bf52be1d7e4e33b933a7</id>
<content type='text'>
Travis CI now requires that we apply for OSS credits. The CI tool used
doesn't really matter so long as it works, so switch to GitHub Actions.

Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Travis CI now requires that we apply for OSS credits. The CI tool used
doesn't really matter so long as it works, so switch to GitHub Actions.

Signed-off-by: Stephen Finucane &lt;stephenfin@redhat.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
