File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -199,8 +199,12 @@ A couple of notes on pushing this software to PyPi:
1991991 . Version Bump
200200 1 . Change the version in ` __init__ ` .py
201201 2 . Change the version in tests
202- 3 . Change the download URL in setup.py
202+ 3 . Change the download URL in setup.py
2032032 . Tag the release ` git tag -a v0.x.x `
2042043 . Push to Github
2052054 . Register ` python setup.py register -r pypi `
2062065 . Upload ` python setup.py sdist upload -r pypi `
207+
208+ ## Contributors
209+
210+ Thanks to [ @philippbosch ] ( https://github.com/philippbosch ) for helping provide Python 3 support with later versions of Django.
Original file line number Diff line number Diff line change 1919
2020__version_info__ = {
2121 'major' : 0 ,
22- 'minor' : 6 ,
23- 'micro' : 5 ,
22+ 'minor' : 7 ,
23+ 'micro' : 0 ,
2424 'releaselevel' : 'final' ,
2525 'serial' : 2
2626}
Original file line number Diff line number Diff line change 6161 "name" : "django-generic-json-views" ,
6262 "version" : version ,
6363 "url" : 'https://github.com/bbengfort/django-generic-json-views' ,
64- "download_url" : "https://github.com/bbengfort/django-generic-json-views/tarball/v0.6.5 " ,
64+ "download_url" : "https://github.com/bbengfort/django-generic-json-views/tarball/v0.7 " ,
6565 "license" : 'Apache' ,
6666 "description" : 'Class based generic views that render JSON data.' ,
6767 "long_description" : long_description ,
Original file line number Diff line number Diff line change @@ -53,4 +53,4 @@ def test_version(self):
5353 Reminder to bump version
5454 """
5555 import json_views
56- self .assertEqual (json_views .get_version (), "0.6.5 " )
56+ self .assertEqual (json_views .get_version (), "0.7 " )
You can’t perform that action at this time.
0 commit comments