Skip to content

Commit

Permalink
Preparing for the next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcustodio committed Oct 12, 2014
1 parent f30692a commit 5006f68
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ python:
- "3.3"
- "3.4"
install:
- "make --quiet travis-setup"
- "make --quiet reqs"
script:
- "make --quiet travis-tests"
- "make --quiet test"
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ pep8-tests:
unit-tests:
nosetests

travis-setup: setup-base-dependencies setup-test-dependencies
reqs: setup-base-dependencies setup-test-dependencies

travis-tests: pep8-tests unit-tests
test: pep8-tests unit-tests
7 changes: 3 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ polyline
.. image:: https://pypip.in/d/polyline/badge.png
:target: https://crate.io/packages/polyline/

A Python implementation of Google's Encoded Polyline Algorithm Format
(http://goo.gl/PvXf8Y). This is essentially a port of
``polyline`` is a Python implementation of Google's Encoded Polyline Algorithm
Format (http://goo.gl/PvXf8Y). It is essentially a port of
https://github.com/mapbox/polyline built with Python 2 and 3 support in mind.

The documentation for ``polyline`` can be found at
http://polyline.readthedocs.org/.
The documentation for ``polyline`` can be found at http://polyline.rtfd.org/.

License
-------
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.0'
release = '1.1-dev'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 2 additions & 8 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
========
polyline
========

.. contents::

Introduction
============

A Python implementation of Google's Encoded Polyline Algorithm Format
(http://goo.gl/PvXf8Y). This is essentially a port of
``polyline`` is a Python implementation of Google's Encoded Polyline Algorithm
Format (http://goo.gl/PvXf8Y). It is essentially a port of
https://github.com/mapbox/polyline built with Python 2 and 3 support in mind.

Installation
Expand Down
4 changes: 2 additions & 2 deletions polyline/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '1.0'
__version__ = '1.1-dev'

from polyline.codec import PolylineCodec # NOQA
from .codec import PolylineCodec # NOQA
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name='polyline',
version='1.0',
version='1.1-dev',
description=desc,
long_description=long_desc,
author='Bruno M. Custódio',
Expand All @@ -33,7 +33,7 @@
license='MIT',
zip_safe=False,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
Expand Down
2 changes: 1 addition & 1 deletion test/test_codec.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from polyline.codec import PolylineCodec
from polyline import PolylineCodec


class PolylineCodecTestCase(unittest.TestCase):
Expand Down

0 comments on commit 5006f68

Please sign in to comment.