8000 Release 0.3.0 · jfly/github3.py@a3deaec · GitHub
[go: up one dir, main page]

Skip to content

Commit a3deaec

Browse files
committed
Release 0.3.0
1 parent f2b7aea commit a3deaec

File tree

3 files changed

+33
-30
lines changed

3 files changed

+33
-30
lines changed

HISTORY.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
History/Changelog
22
=================
33

4-
0.3: xxxx-xx-xx
4+
0.3: 2013-01-01
55
---------------
66

77
- In github3.repos.Repository
@@ -66,6 +66,9 @@ History/Changelog
6666
- github3.users.RepoTag (uses the tag name)
6767
- github3.users.Contents (uses the decoded content)
6868

69+
- 60% test coverage with mock
70+
- Upgrade to requests 1.0.x
71+
6972
.. _types: http://developer.github.com/v3/repos/#list-organization-repositories
7073

7174
0.2: 2012-11-21

github3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = 'Ian Cordasco'
1414
__license__ = 'Modified BSD'
1515
__copyright__ = 'Copyright 2012-2013 Ian Cordasco'
16-
__version__ = '0.3.b'
16+
__version__ = '0.3'
1717

1818
from github3.api import *
1919
from github3.github import GitHub, GitHubEnterprise, GitHubStatus

setup.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"github3.packages",
1919
"github3.packages.PySO8601",
2020
]
21-
requires = ["requests==0.14.1"]
21+
requires = ["requests==1.0.4"]
2222

2323
__version__ = ''
2424
with open('github3/__init__.py', 'r') as fd:
@@ -33,30 +33,30 @@
3333
raise RuntimeError('Cannot find version information')
3434

3535
setup(
36-
name="github3.py",
37-
version=__version__,
38-
description=("Python wrapper for the GitHub API"
39-
"(http://developer.github.com/v3)"),
40-
long_description="\n\n".join([open("README.rst").read(),
41-
open("HISTORY.rst").read()]),
42-
license=open('LICENSE').read(),
43-
author="Ian Cordasco",
44-
author_email="graffatcolmingov@gmail.com",
45-
url="https://github3py.readthedocs.org",
46-
packages=packages,
47-
package_data={'': ['LICENSE', 'AUTHORS.rst']},
48-
include_package_data=True,
49-
install_requires=requires,
50-
classifiers=[
51-
'Development Status :: 5 - Production/Stable',
52-
'License :: OSI Approved',
53-
'Intended Audience :: Developers',
54-
'Programming Language :: Python',
55-
'Programming Language :: Python :: 2',
56-
'Programming Language :: Python :: 2.6',
57-
'Programming Language :: Python :: 2.7',
58-
'Programming Language :: Python :: 3',
59-
'Programming Language :: Python :: 3.2',
60-
'Programming Language :: Python :: Implementation :: CPython',
61-
],
62-
)
36+
name="github3.py",
37+
version=__version__,
38+
description=("Python wrapper for the GitHub API"
39+
"(http://developer.github.com/v3)"),
40+
long_description="\n\n".join([open("README.rst").read(),
41+
open("HISTORY.rst").read()]),
42+
license=open('LICENSE').read(),
43+
author="Ian Cordasco",
44+
author_email="graffatcolmingov@gmail.com",
45+
url="https://github3py.readthedocs.org",
46+
packages=packages,
47+
package_data={'': ['LICENSE', 'AUTHORS.rst']},
48+
include_package_data=True,
49+
install_requires=requires,
50+
classifiers=[
51+
'Development Status :: 5 - Production/Stable',
52+
'License :: OSI Approved',
53+
'Intended Audience :: Developers',
54+
'Programming Language :: Python',
55+
'Programming Language :: Python :: 2' 58FB ,
56+
'Programming Language :: Python :: 2.6',
57+
'Programming Language :: Python :: 2.7',
58+
'Programming Language :: Python :: 3',
59+
'Programming Language :: Python :: 3.2',
60+
'Programming Language :: Python :: Implementation :: CPython',
61+
],
62+
)

0 commit comments

Comments
 (0)
0