diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2012-12-23 01:09:25 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2012-12-23 01:09:25 +0100 |
commit | 44e8c9171aa2231a2b31c9488e2108c0170eed41 (patch) | |
tree | c0b08c86c42156a37dc1e3090ada9dcc651e8a5e | |
parent | 4af7fad19c6671164576f3a8c8194cc220f3419d (diff) | |
download | pep8-44e8c9171aa2231a2b31c9488e2108c0170eed41.tar.gz |
The TODO has moved to the issue tracker a long time ago
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rw-r--r-- | TODO.txt | 0 | ||||
-rwxr-xr-x | pep8.py | 2 | ||||
-rw-r--r-- | setup.py | 4 |
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 9fcff28..ea141f9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,12 @@ Changelog ========= +1.x (unreleased) +---------------- + +* ... + + 1.4 (2012-12-22) ---------------- diff --git a/TODO.txt b/TODO.txt deleted file mode 100644 index e69de29..0000000 --- a/TODO.txt +++ /dev/null @@ -45,7 +45,7 @@ W warnings 700 statements 900 syntax error """ -__version__ = '1.4' +__version__ = '1.4.1a0' import os import sys @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from __future__ import with_statement -from setuptools import setup, find_packages +from setuptools import setup def get_version(): @@ -12,7 +12,7 @@ def get_version(): def get_long_description(): descr = [] - for fname in 'README.rst', 'CHANGES.txt': # , 'TODO.txt' + for fname in 'README.rst', 'CHANGES.txt': with open(fname) as f: descr.append(f.read()) return '\n\n'.join(descr) |