From 3be875bfd22d1a5f5538ba08828c107eba53e68c Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 26 Aug 2009 19:09:52 +0200 Subject: [PATCH] some fixes and small doc updates, aiming to finalize 1.0.2 --HG-- branch : 1.0.x --- MANIFEST.in | 1 + README.txt | 12 +----------- doc/path.txt | 4 +--- py/__init__.py | 2 +- py/misc/rest.py | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 17 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 5e2203188..102feadbd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,6 +4,7 @@ include setup.py include LICENSE include py/LICENSE include py/path/svn/testing/repotest.dump +include py/rest/rest.sty.template exclude *.orig exclude *.rej prune .svn diff --git a/README.txt b/README.txt index 6ffe05619..c8c78699c 100644 --- a/README.txt +++ b/README.txt @@ -6,14 +6,4 @@ the following tools and modules: * py.code: dynamic code generation and introspection * py.path: uniform local and svn path objects -It includes code and contributions from several people, -listed in the LICENSE file. - -For questions, please see py/doc/index.txt, refer to the website -http://pylib.org or come to the #pylib IRC freenode channel or subscribe to -http://codespeak.net/mailman/listinfo/py-dev . - -have fun, - -holger krekel, holger at merlinux eu - +For questions and more information please visit http://pylib.org diff --git a/doc/path.txt b/doc/path.txt index bab3eea64..640f8dbcf 100644 --- a/doc/path.txt +++ b/doc/path.txt @@ -255,9 +255,7 @@ of platform-dependencies as much as possible). There is some experimental small approach (:source:`py/path/gateway/`) aiming at having -a convenient Remote Path implementation -and some considerations about future -works in the according :source:`py/path/gateway/TODO.txt` +a convenient Remote Path implementation. There are various hacks out there to have Memory-Filesystems and even path objects diff --git a/py/__init__.py b/py/__init__.py index 9d4761bc6..7aef04784 100644 --- a/py/__init__.py +++ b/py/__init__.py @@ -20,7 +20,7 @@ For questions please check out http://pylib.org/contact.html from initpkg import initpkg trunk = None -version = trunk or "1.0.2b1" +version = trunk or "1.0.2" initpkg(__name__, description = "py.test and pylib: advanced testing tool and networking lib", diff --git a/py/misc/rest.py b/py/misc/rest.py index b4318bc97..6a97efe38 100644 --- a/py/misc/rest.py +++ b/py/misc/rest.py @@ -31,7 +31,7 @@ def convert_rest_html(source, source_path, stylesheet=None, encoding='latin1'): source_path = os.path.abspath(str(source_path)) prevdir = os.getcwd() try: - os.chdir(os.path.dirname(source_path)) + #os.chdir(os.path.dirname(source_path)) return publish_string(source, source_path, writer_name='html', settings_overrides=kwargs) finally: diff --git a/setup.py b/setup.py index 3d1e448c5..32e48dcd4 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def main(): name='py', description='py.test and pylib: advanced testing tool and networking lib', long_description = long_description, - version= trunk or '1.0.2b1', + version= trunk or '1.0.2', url='http://pylib.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],