[Python-modules-commits] [python-svg.path] 01/05: Import python-svg.path_2.0.1.orig.tar.gz

Daniel Stender danstender-guest at moszumanska.debian.org
Thu Oct 29 13:54:52 UTC 2015


This is an automated email from the git hooks/post-receive script.

danstender-guest pushed a commit to branch master
in repository python-svg.path.

commit 53d430aee2d6f47622e839c8db655f1d9890c582
Author: Daniel Stender <debian at danielstender.com>
Date:   Thu Oct 29 14:44:35 2015 +0100

    Import python-svg.path_2.0.1.orig.tar.gz
---
 CHANGES.txt                       |  8 ++++++++
 CONTRIBUTORS.txt                  |  2 +-
 PKG-INFO                          | 12 ++++++++++--
 setup.py                          |  2 +-
 src/svg.path.egg-info/PKG-INFO    | 12 ++++++++++--
 src/svg.path.egg-info/SOURCES.txt |  1 -
 src/svg.path.egg-info/pbr.json    |  1 -
 src/svg/path/path.py              |  2 +-
 src/svg/path/tests/test_doc.py    |  2 +-
 9 files changed, 32 insertions(+), 10 deletions(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index b552a91..5f4699c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,14 @@
 Changelog
 =========
 
+2.0.1 (2015-10-17)
+------------------
+
+- #20: The doctext for the closed() setter was incorrect.
+
+- #19: Fixed so tests didn't use relative paths. [danstender]
+
+
 2.0 (2015-05-15)
 ----------------
 
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index c989274..aedc719 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -6,4 +6,4 @@ provided suggestions and feedback about the d() function.
 Michiel Schallig suggested calculating length by recursive straight-line
 approximations, which enables you to choose between accuracy or speed.
 
-Thanks also to bug fixers Martin R and abcjjy.
+Thanks also to bug fixers Martin R, abcjjy, and Daniel Stender.
diff --git a/PKG-INFO b/PKG-INFO
index 615b6a0..a966ede 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: svg.path
-Version: 2.0
+Version: 2.0.1
 Summary: SVG path objects and parser
 Home-page: https://github.com/regebro/svg.path
 Author: Lennart Regebro
@@ -183,11 +183,19 @@ Description: svg.path
         Michiel Schallig suggested calculating length by recursive straight-line
         approximations, which enables you to choose between accuracy or speed.
         
-        Thanks also to bug fixers Martin R and abcjjy.
+        Thanks also to bug fixers Martin R, abcjjy, and Daniel Stender.
         
         Changelog
         =========
         
+        2.0.1 (2015-10-17)
+        ------------------
+        
+        - #20: The doctext for the closed() setter was incorrect.
+        
+        - #19: Fixed so tests didn't use relative paths. [danstender]
+        
+        
         2.0 (2015-05-15)
         ----------------
         
diff --git a/setup.py b/setup.py
index 5b4d0c7..61e3e43 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 import os
 
-version = '2.0'
+version = '2.0.1'
 
 long_description = (
     open('README.rst').read()
diff --git a/src/svg.path.egg-info/PKG-INFO b/src/svg.path.egg-info/PKG-INFO
index 615b6a0..a966ede 100644
--- a/src/svg.path.egg-info/PKG-INFO
+++ b/src/svg.path.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: svg.path
-Version: 2.0
+Version: 2.0.1
 Summary: SVG path objects and parser
 Home-page: https://github.com/regebro/svg.path
 Author: Lennart Regebro
@@ -183,11 +183,19 @@ Description: svg.path
         Michiel Schallig suggested calculating length by recursive straight-line
         approximations, which enables you to choose between accuracy or speed.
         
-        Thanks also to bug fixers Martin R and abcjjy.
+        Thanks also to bug fixers Martin R, abcjjy, and Daniel Stender.
         
         Changelog
         =========
         
+        2.0.1 (2015-10-17)
+        ------------------
+        
+        - #20: The doctext for the closed() setter was incorrect.
+        
+        - #19: Fixed so tests didn't use relative paths. [danstender]
+        
+        
         2.0 (2015-05-15)
         ----------------
         
diff --git a/src/svg.path.egg-info/SOURCES.txt b/src/svg.path.egg-info/SOURCES.txt
index 7177719..9b6c6d4 100644
--- a/src/svg.path.egg-info/SOURCES.txt
+++ b/src/svg.path.egg-info/SOURCES.txt
@@ -10,7 +10,6 @@ src/svg.path.egg-info/PKG-INFO
 src/svg.path.egg-info/SOURCES.txt
 src/svg.path.egg-info/dependency_links.txt
 src/svg.path.egg-info/namespace_packages.txt
-src/svg.path.egg-info/pbr.json
 src/svg.path.egg-info/requires.txt
 src/svg.path.egg-info/top_level.txt
 src/svg.path.egg-info/zip-safe
diff --git a/src/svg.path.egg-info/pbr.json b/src/svg.path.egg-info/pbr.json
deleted file mode 100644
index bde0efd..0000000
--- a/src/svg.path.egg-info/pbr.json
+++ /dev/null
@@ -1 +0,0 @@
-{"is_release": true, "git_version": "e921be7"}
\ No newline at end of file
diff --git a/src/svg/path/path.py b/src/svg/path/path.py
index b1f6044..31d2bcd 100644
--- a/src/svg/path/path.py
+++ b/src/svg/path/path.py
@@ -367,7 +367,7 @@ class Path(MutableSequence):
 
     @property
     def closed(self):
-        """Checks that the end point is the same as the start point"""
+        """Checks that the path is closed"""
         return self._closed and self._is_closable()
 
     @closed.setter
diff --git a/src/svg/path/tests/test_doc.py b/src/svg/path/tests/test_doc.py
index 1dc45e9..ca3ca60 100644
--- a/src/svg/path/tests/test_doc.py
+++ b/src/svg/path/tests/test_doc.py
@@ -3,5 +3,5 @@ import doctest
 
 
 def load_tests(loader, tests, ignore):
-    tests.addTests(doctest.DocFileSuite('../../../../README.rst'))
+    tests.addTests(doctest.DocFileSuite('README.rst', package='__main__'))
     return tests

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-svg.path.git



More information about the Python-modules-commits mailing list