X Tutup
Skip to content

Commit c018a48

Browse files
committed
bumping version to 1.1 for distribution, see CHANGES for details
1 parent 8a63677 commit c018a48

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CHANGES

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2013-10-06
2+
changed version to 1.1
3+
The following changes have been made since the 1.0.1 release
4+
5+
Remove from ParseTweet the Python 2.7 only dict comprehension item
6+
Fix GetListTimeline condition to enable owner_screen_name based fetching
7+
Many fixes for readability and PEP8
8+
Cleaning up some of the package importing. Only importing the functions that are needed
9+
Also added first build of the sphinx documentation. Copied some info from the readme to the index page
10+
Added lines to setup.py to help the user troubleshoot install problems. #109
11+
Removed the OAuth2 lines from the readme
12+
Removed OAuth2 library requirements
13+
Added GetListMembers()
14+
15+
116
2013-06-07
217
changed version to 1.0.1
318
added README bit about Python version requirement

python-twitter.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
22

33
Name: python-twitter
4-
Version: 0.7-devel
4+
Version: 1.1
55
Release: 1%{?dist}
66
Summary: Python Interface for Twitter API
77

88
Group: Development/Libraries
99
License: Apache License 2.0
10-
URL: http://code.google.com/p/python-twitter/
10+
URL: http://github.com/bear/python-twitter
1111
Source0: http://python-twitter.googlecode.com/files/%{name}-%{version}.tar.gz
1212
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
1313

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
argparse==1.2.1
22
httplib2==0.7.7
3-
oauth2==1.5.211
43
wsgiref==0.1.2
4+
requests==1.2.3
5+
requests-oauthlib==0.3.3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'''The setup and build script for the python-twitter library.'''
1818

1919
__author__ = 'python-twitter@googlegroups.com'
20-
__version__ = '1.0.1'
20+
__version__ = '1.1'
2121

2222

2323
# The base package metadata to be used by both distutils and setuptools

twitter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'''A library that provides a Python interface to the Twitter API'''
2020

2121
__author__ = 'python-twitter@googlegroups.com'
22-
__version__ = '1.0.1'
22+
__version__ = '1.1'
2323

2424

2525
import os

0 commit comments

Comments
 (0)
X Tutup