summaryrefslogtreecommitdiff
path: root/pymemcache/__init__.py
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2019-08-06 12:06:21 -0700
committerGitHub <noreply@github.com>2019-08-06 12:06:21 -0700
commit762856daf858360e4bd848fd82040f266bfdb2e2 (patch)
tree98d90106593e1887b702ce66caa877e6423e4198 /pymemcache/__init__.py
parent7ad74da1c242a735bd805c836f3ddf5830b19a83 (diff)
downloadpymemcache-762856daf858360e4bd848fd82040f266bfdb2e2.tar.gz
Fix long_description string in Python packaging (#249)v2.2.2
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.
Diffstat (limited to 'pymemcache/__init__.py')
-rw-r--r--pymemcache/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py
index ae051ba..33e1cb1 100644
--- a/pymemcache/__init__.py
+++ b/pymemcache/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '2.2.1'
+__version__ = '2.2.2'
from pymemcache.client.base import Client # noqa
from pymemcache.client.base import PooledClient # noqa