Skip to content

Commit

Permalink
add py3.4 support and doc updating
Browse files Browse the repository at this point in the history
- remove repoze cruft
- add py3.4 support
- update documentation regarding version support
- all tests passing in py3.4
- changed README.txt and CHANGES.txt to .rst files
  • Loading branch information
tisdall committed Apr 21, 2015
1 parent 771bc06 commit 17d7cb0
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 31 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

0.6 (unreleased)
----------------

- Add support for Python 3.4.

0.5 (2014-09-29)
----------------

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,4 @@ Contributors
- Atsushi Odagiri, 2012/02/05
- Valentin Ungureanu, 2012/02/06
- Shane Hathaway, 2013/04/13
- Tim Tisdall, 2015/04/21
4 changes: 2 additions & 2 deletions README.txt → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Peppercorn

A library for converting a token stream into a data structure comprised of
sequences, mappings, and scalars, developed primarily for converting HTTP form
post data into a richer data structure. It runs on Python 2.6, 2.7, 3.2, and
3.3.
post data into a richer data structure. It runs on Python 2.6, 2.7, 3.2,
3.3, and 3.4.

Please see http://docs.pylonsproject.org/projects/peppercorn/en/latest/
for the documentation.
Expand Down
Binary file removed docs/.static/logo_hi.gif
Binary file not shown.
22 changes: 0 additions & 22 deletions docs/.static/repoze.css

This file was deleted.

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@

# The name of an image file (within the static path) to place at the top of
# the sidebar.
html_logo = '.static/logo_hi.gif'
#html_logo = '.static/logo_hi.gif'

# The name of an image file (within the static path) to use as favicon of
# the docs. This file should be a Windows icon file (.ico) being 16x16 or
Expand Down Expand Up @@ -211,7 +211,7 @@

# The name of an image file (relative to this directory) to place at the
# top of the title page.
latex_logo = '.static/logo_hi.gif'
#latex_logo = '.static/logo_hi.gif'

# For "manual" documents, if this is true, then toplevel headings are
# parts, not chapters.
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Peppercorn

A library for converting a token stream into a data structure comprised of
sequences, mappings, and scalars, developed primarily for converting HTTP
form post data into a richer data structure. It runs on Python 2.5, 2.6, 2.7
and 3.2.
form post data into a richer data structure. It runs on Python 2.6, 2.7,
3.2, 3.3 and 3.4.

Example "bare" usage:

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
here = os.path.abspath(os.path.dirname(__file__))

try:
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except:
README = ''
CHANGES = ''
Expand All @@ -43,6 +43,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,pypy,cover
py26,py27,py32,py33,py34,pypy,cover

[testenv]
commands =
Expand Down

0 comments on commit 17d7cb0

Please sign in to comment.