15
0
forked from pool/python-rope

- Update to 0.17.0:

- Make tests compatible with Python 3.8
  - Use context manager for open()
  - Don’t use UserDict (!!!) and collections.MutableMapping.
  - assertEquals has been deprecated for long time (-> assertEqual)
  - Remove weird escpaing of 's' character, which is the syntax
    error these days.
  - Add testing for Python 3.8 as well
  - Fix pattern for matching short strings
  - Work with deprecated types and using aliased ones.
  - Don't use underscored _ast, but use ast instead
  - Direct import from collections is getting deprecated.
  - Use .is_alive method instead of a deprecated .isAlive
    in threading.Thread
  - Fix simple typo: sitaution -> situation (#287)
  - Two more assertEquals happened.
- Remove all patches, which were now included in the upstream
  tarball.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rope?expand=0&rev=37
This commit is contained in:
2020-05-05 16:31:46 +00:00
committed by Git OBS Bridge
parent dcbe97ef6d
commit bfd35b01f7
8 changed files with 26 additions and 819 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Tue May 5 16:25:43 UTC 2020 - Matej Cepl <mcepl@suse.com>
- Update to 0.17.0:
- Make tests compatible with Python 3.8
- Use context manager for open()
- Dont use UserDict (!!!) and collections.MutableMapping.
- assertEquals has been deprecated for long time (-> assertEqual)
- Remove weird escpaing of 's' character, which is the syntax
error these days.
- Add testing for Python 3.8 as well
- Fix pattern for matching short strings
- Work with deprecated types and using aliased ones.
- Don't use underscored _ast, but use ast instead
- Direct import from collections is getting deprecated.
- Use .is_alive method instead of a deprecated .isAlive
in threading.Thread
- Fix simple typo: sitaution -> situation (#287)
- Two more assertEquals happened.
- Remove all patches, which were now included in the upstream
tarball.
-------------------------------------------------------------------
Mon Mar 9 10:54:00 CET 2020 - Matej Cepl <mcepl@suse.com>