Skip to content

Commit 32ff332

Browse files
committed
Merged pull request copitux#7 from alejandrogomez
2 parents 1b1ccd6 + 97564bc commit 32ff332

File tree

6 files changed

+10
-2
lines changed

6 files changed

+10
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
*.rope*
55
MANIFEST
66
docs/_build
7+
dist/
8+
*egg-info

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
init:
2+
pip install -r requirements/dev.txt

pygithub3/resources/repos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class Repo(Resource):
1212

13-
_dates = ('created_at', 'pushed_at')
13+
_dates = ('created_at', 'updated_at', 'pushed_at')
1414
_maps = {'owner': User, 'organization': Org, 'parent': 'self',
1515
'source': 'self'}
1616

File renamed without changes.

requirements/dev.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-r base.txt
2+
3+
nose
4+
mock

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
long_description=open('README.rst').read(),
1515
license='ISC',
1616
packages=find_packages(exclude=['*tests*']),
17-
install_requires=map(str.strip, open('requirements.txt')),
17+
install_requires=map(str.strip, open('requirements/base.txt')),
1818
include_package_data=True,
1919
classifiers=(
2020
'Programming Language :: Python',

0 commit comments

Comments
 (0)