From c8a58bb734cfbc1bf1ea0d27939e8473d3be4cb8 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 5 Aug 2017 11:29:03 +0200 Subject: [PATCH 1/4] version bump --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b47b04b..6b8e83f 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def read(path): setup( name='giofile', - version='0.1.0', + version='0.2.0', description=('Opens a Gio.File as a Python file object'), long_description=read('README.rst'), author='Christoph Reiter', From 2ea2907c9de2bdfb286bae055585072edd6e55bb Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 5 Aug 2017 11:30:53 +0200 Subject: [PATCH 2/4] README: add note about pip --- README.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.rst b/README.rst index 7506e20..f2494c8 100644 --- a/README.rst +++ b/README.rst @@ -21,6 +21,13 @@ Opens a Gio.File as a Python file object .. image:: https://travis-ci.org/lazka/giofile.svg?branch=master :target: https://travis-ci.org/lazka/giofile +Installation +============ + +:: + + pip install giofile + Example ======= From 1d8b6e48b2313e6d89ed3fca62b648c07c4531d3 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Fri, 15 Dec 2017 10:31:29 +0100 Subject: [PATCH 3/4] release --- NEWS | 5 ++++- setup.py | 8 +++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 28ac628..3f75798 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ -0.2.0 - ????-??-?? +0.2.0 - 2017-12-15 ------------------ +* setup.py: depend on pygobject +* Drop Python 3.3 support + 0.1.0 - 2017-08-05 ------------------ diff --git a/setup.py b/setup.py index 6b8e83f..e8f61db 100644 --- a/setup.py +++ b/setup.py @@ -42,10 +42,13 @@ def read(path): 'giofile', ], setup_requires=[ - 'pytest-runner' + 'pytest-runner', ], tests_require=[ - 'pytest' + 'pytest', + ], + install_requires=[ + 'pygobject', ], classifiers=[ 'Intended Audience :: Developers', @@ -53,7 +56,6 @@ def read(path): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', From 59117aa2eb5dfe633da54d921b0c5c9547b31361 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Fri, 15 Dec 2017 10:32:14 +0100 Subject: [PATCH 4/4] version bump --- NEWS | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3f75798..ffff490 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +0.3.0 - ????-??-?? +------------------ + + 0.2.0 - 2017-12-15 ------------------ diff --git a/setup.py b/setup.py index e8f61db..1edf471 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def read(path): setup( name='giofile', - version='0.2.0', + version='0.3.0', description=('Opens a Gio.File as a Python file object'), long_description=read('README.rst'), author='Christoph Reiter',