<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pymemcache.git/setup.cfg, branch github-actions</title>
<subtitle>github.com: pinterest/pymemcache.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/'/>
<entry>
<title>Fix long_description string in Python packaging (#249)</title>
<updated>2019-08-06T19:06:21+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2019-08-06T19:06:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=762856daf858360e4bd848fd82040f266bfdb2e2'/>
<id>762856daf858360e4bd848fd82040f266bfdb2e2</id>
<content type='text'>
When defining `long_description` in setup.cfg using the `file:`
directive, we need to keep everything on one line. Otherwise, it will
treat the value as a block of literal text.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When defining `long_description` in setup.cfg using the `file:`
directive, we need to keep everything on one line. Otherwise, it will
treat the value as a block of literal text.</pre>
</div>
</content>
</entry>
<entry>
<title>Set `long_description_content_type = text/x-rst`</title>
<updated>2019-07-30T16:40:15+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2019-07-30T16:40:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=41b9add648123b8181b77583adab1982fadb6614'/>
<id>41b9add648123b8181b77583adab1982fadb6614</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Normalize the repository URL (#238)</title>
<updated>2019-07-05T17:17:43+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2019-07-05T17:17:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=2c73da53b7315128706eb565ba4e686c3fe25ff5'/>
<id>2c73da53b7315128706eb565ba4e686c3fe25ff5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop official support for Python 3.4 (#234)</title>
<updated>2019-06-07T21:26:04+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2019-06-07T21:26:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=708fb55e2af6d5a58046f1ff5597f0024b5865e2'/>
<id>708fb55e2af6d5a58046f1ff5597f0024b5865e2</id>
<content type='text'>
Python 3.4 has reached end-of-life so remove it from the set of
officially supported Python versions.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.4 has reached end-of-life so remove it from the set of
officially supported Python versions.</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce package metadata configuration by using setup.cfg</title>
<updated>2019-02-21T20:42:13+00:00</updated>
<author>
<name>Hervé Beraud</name>
<email>hberaud@redhat.com</email>
</author>
<published>2019-02-20T15:43:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=acc6466a0a19a5c359c2058e892f2fa2e567e55b'/>
<id>acc6466a0a19a5c359c2058e892f2fa2e567e55b</id>
<content type='text'>
Since setuptools 30.3.0 we can use setup.cfg to configure package
for build and distribute. These changes propose to adopt a more
modern approach to package pymemcache by using latest and stable
feature of setuptools.

Overview:
- remove python code to maintain
- introduce package metadata,
- centralize version management in package metadata
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since setuptools 30.3.0 we can use setup.cfg to configure package
for build and distribute. These changes propose to adopt a more
modern approach to package pymemcache by using latest and stable
feature of setuptools.

Overview:
- remove python code to maintain
- introduce package metadata,
- centralize version management in package metadata
</pre>
</div>
</content>
</entry>
<entry>
<title>Parse version directly from pymemcache/__init__.py</title>
<updated>2019-01-28T15:43:22+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2019-01-28T15:38:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=3d820b2f9c85210fd810fe8c8548265621867f69'/>
<id>3d820b2f9c85210fd810fe8c8548265621867f69</id>
<content type='text'>
We can no longer import the __version__ attribute because there is no an
implicit runtime dependency on six (as of #197), and we can't guarantee
that six is installed until *after* setup.py is parsed and run.

Instead, parse the `__version__ = 'x.y.z'` string from __init__.py to
extract the version.

Fixes #214
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can no longer import the __version__ attribute because there is no an
implicit runtime dependency on six (as of #197), and we can't guarantee
that six is installed until *after* setup.py is parsed and run.

Instead, parse the `__version__ = 'x.y.z'` string from __init__.py to
extract the version.

Fixes #214
</pre>
</div>
</content>
</entry>
<entry>
<title>Omit test/* code from the coverage report</title>
<updated>2019-01-07T23:43:00+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2019-01-07T23:43:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=96444fbd860024b25994cd81480781e9f7ea0649'/>
<id>96444fbd860024b25994cd81480781e9f7ea0649</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version to 2.0.0</title>
<updated>2018-09-12T21:36:16+00:00</updated>
<author>
<name>Joe Gordon</name>
<email>jogo@pinterest.com</email>
</author>
<published>2018-09-07T17:57:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=d2c719f8918ee1da38151178ec78b203ee9a0507'/>
<id>d2c719f8918ee1da38151178ec78b203ee9a0507</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version</title>
<updated>2018-01-07T20:45:49+00:00</updated>
<author>
<name>Nicholas Charriere</name>
<email>nicholas@pinterest.com</email>
</author>
<published>2018-01-07T20:45:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=315f214b126ea03af73ca7a1e5c463319e2ca5c6'/>
<id>315f214b126ea03af73ca7a1e5c463319e2ca5c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Exclude well-known non-code paths from flake8</title>
<updated>2017-05-05T16:36:22+00:00</updated>
<author>
<name>Jon Parise</name>
<email>jon@pinterest.com</email>
</author>
<published>2017-05-05T16:36:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pymemcache.git/commit/?id=98426e831a905cda9c023bd9cbfb8cc00e7578fb'/>
<id>98426e831a905cda9c023bd9cbfb8cc00e7578fb</id>
<content type='text'>
Also fix a minor flake8 issue in setup.py.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also fix a minor flake8 issue in setup.py.
</pre>
</div>
</content>
</entry>
</feed>
