15
0

- update to 2.3:

- Removed flickrapi/contrib.py, as a persistent connection is now managed (much better)
  - Added explicit support for Python 3.5.
  - Moved from a Mercurial repository at BitBucket to a [Git repository
    at GitHub](https://github.com/sybrenstuvel/flickrapi/).
  - Mocking some calls to Flickr, so that unit tests can run without
    requiring the user to authenticate via the browser. This also
    prevents the upload of the test photo.
  - More serious testing, using py.test and Tox to test on all support
    versions of Python.
  - Automated builds are performed with Travis-CI.
  - Make flickrapi token storage directory configurable.
    [[ Feature request #68 ]](https://github.com/sybrenstuvel/flickrapi/issues/68)
  - Put requests in a session to benefit from connection reuse (Alexandre L).
  - When uploading a photo, send the title as UTF8
  - Sort many photosets with 'flickr.photosets.orderSets' failed
    [[ Bug report #74]](https://github.com/sybrenstuvel/flickrapi/issues/74)
  - Converted requested_permissions to unicode and ported authentication
    example to Python 3 (Michael Klich).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flickrapi?expand=0&rev=8
This commit is contained in:
2017-05-16 16:14:54 +00:00
committed by Git OBS Bridge
parent 3ef3d494d9
commit 9030b9026d
4 changed files with 42 additions and 19 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Tue May 16 16:07:22 UTC 2017 - dmueller@suse.com
- update to 2.3:
- Removed flickrapi/contrib.py, as a persistent connection is now managed (much better)
- Added explicit support for Python 3.5.
- Moved from a Mercurial repository at BitBucket to a [Git repository
at GitHub](https://github.com/sybrenstuvel/flickrapi/).
- Mocking some calls to Flickr, so that unit tests can run without
requiring the user to authenticate via the browser. This also
prevents the upload of the test photo.
- More serious testing, using py.test and Tox to test on all support
versions of Python.
- Automated builds are performed with Travis-CI.
- Make flickrapi token storage directory configurable.
[[ Feature request #68 ]](https://github.com/sybrenstuvel/flickrapi/issues/68)
- Put requests in a session to benefit from connection reuse (Alexandre L).
- When uploading a photo, send the title as UTF8
- Sort many photosets with 'flickr.photosets.orderSets' failed
[[ Bug report #74]](https://github.com/sybrenstuvel/flickrapi/issues/74)
- Converted requested_permissions to unicode and ported authentication
example to Python 3 (Michael Klich).
-------------------------------------------------------------------
Tue May 5 12:31:06 UTC 2015 - benoit.monin@gmx.fr