[pyzo] branch debian/master updated (42b8a87 -> 438871b)

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Wed Sep 28 09:47:03 UTC 2016


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a change to branch debian/master
in repository pyzo.

      from  42b8a87   Release to unstable.
      adds  3980fe4   fix docstring in __init__ so it will look better on pypi next time
      adds  0e6335c   Simplified Chinese translation for #402
      adds  6925a59   Merge pull request #405 from dingxl05/master
       new  cc714ce   Fix typo in README.
       new  125e526   Merge pull request #410 from ghisvail/fix/typo-readme
       new  a9710c7   Improve default sdist with explicit MANIFEST.in file.
       new  3b7d759   Merge pull request #411 from ghisvail/enh/improve-sdist
       new  3b9baba   Add translations
       new  c47fb95   Add translations
       new  04af464   Add translations
       new  6b58bc7   Add translations
       new  d4a75b4   Add translations
       new  ed49acf   Add translations
       new  d66cdaa   Add translations
       new  deeaee1   Add translations
       new  fa4d883   Add translations
       new  ab9a9d0   Add translations
       new  a16678c   Add translations
       new  8e3a373   Merge pull request #412 from yltang52/master
       new  a6a714e   Editor window will scroll (center the cursor) only when the cursor moves close to the window border.
       new  c7424f6   Merge pull request #417 from lcerman/lc-reduce-scrolling-while-dbg-stepping
       new  5b463c9   Improvement for Tornado integratiopn
       new  e25f862   Enhance the Linux appdata file a bit
       new  d78f1f5   fix some translations (tool names cannot be translated at this point
       new  0dc136d   fix calltips
       new  9f87b9c   Improved sorting for numbers in workspace (fixes #428)
       new  26db204   interpreter cleanup "name" (fixes #425)
       new  d55c642   new translations
       new  4ee3cb5   Move pyzolib.paths module to pyzo/util
       new  8e0d972   Make file browser independent of pyzolib.path. Use os.path insread
       new  5112cdb   Move pyzolib.qt to pyzo/util/qt
       new  e4483c1   Use zon.py as a light version of ssdf (I wrote that some time ago in the context of Zoof)
       new  8823dc4   Remove last bits of pyzolib
       new  ec1962c   More removing of pyzolib in dev part
       new  4d7438a   Allow closing tabs with middle button
       new  9ccf75c   Add copy path entry to editor context menu
       new  d53da0f   env builder tool should not include visvis and imageio, since these are not yet on conda-forge
       new  a1c4525   Update pyzo_zh_TW.tr
       new  06abd29   Merge pull request #430 from yltang52/patch-2
       new  fe2bd2f   French Translation
       new  fde0d61   Merge pull request #431 from snarkturne/master
       new  06f1a87   Merge branch 'master' of github.com:pyzo/pyzo
       new  068ab8a   Dutch translations
       new  e15e422   add run selection and advance
       new  e741275   Fix #420 - spaces in traceback file names
       new  47a292e   running file changes current dir
       new  ec01047   Use (part of) qtpy.
       new  14d5c51   Adjust for PyQt5 approach
       new  864712c   Missed some spots to make work on PyQt5
       new  56f5b7a   Combobox insertItem makes the combobox look ugly
       new  f5f0924   Merge pull request #433 from pyzo/qt5
       new  48b686d   Fix import errors for some Qt5 components.
       new  35e219c   Merge pull request #434 from ghisvail/qt5
       new  58bce6b   Merge pull request #436 from pyzo/qt5
       new  c6623e5   Detect new default miniconda location
       new  cd0e360   Fix line number choser (with PyQt5 it crashed Pyzo)
       new  761c6bf   Prevent Pyzo abort on Python exception. Fixes #437
       new  63855a8   Better selection of default style (Qt5 drops cleanlooks, but has Fusion)
       new  779e44f   Make it work with PyQt4 again
       new  2825ab6   Dont forget Pyside
       new  40a0371   Add linux fonts.conf
       new  e1266e0   Make frozen Pyzo work for Linux again, and on Qt5
       new  57031b3   Fix in Zon subclass that did not call super
       new  0742d06   Fix freezing on OS X
       new  14375f1   Fix freezing on Win with PyQt5
       new  b13fc01   Set env vars related to making it work when frozen in one place that is editable after freeze
       new  c26eefb   Bumb version to 4.3
       new  c49d7db   Merge tag 'v4.3' into debian/master
       new  2b266bc   Change install dependencies for pyzo.
       new  e1c4ae3   Sort install dependencies of iep.
       new  438871b   Release to unstable.

The 68 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 MANIFEST.in                                        |   5 +
 README.md                                          |   4 +-
 debian/changelog                                   |   9 +
 debian/control                                     |   7 +-
 dllutils.py                                        | 231 +++++++
 freezeScript.py                                    | 131 ++--
 pyzo.appdata.xml                                   |   6 +-
 pyzo/__init__.py                                   |  84 ++-
 pyzo/__main__.py                                   |  15 +-
 pyzo/codeeditor/_test.py                           |  28 +-
 pyzo/codeeditor/base.py                            |  20 +-
 pyzo/codeeditor/extensions/appearance.py           |  19 +-
 pyzo/codeeditor/extensions/autocompletion.py       |  14 +-
 pyzo/codeeditor/extensions/calltip.py              |   6 +-
 pyzo/codeeditor/manager.py                         |   2 +-
 pyzo/codeeditor/misc.py                            |   4 +-
 pyzo/codeeditor/qt.py                              |  21 +-
 pyzo/core/about.py                                 |  46 +-
 pyzo/core/assistant.py                             |  54 +-
 pyzo/core/baseTextCtrl.py                          |  14 +-
 pyzo/core/codeparser.py                            |   2 +-
 pyzo/core/compactTabWidget.py                      |  55 +-
 pyzo/core/editor.py                                |  28 +-
 pyzo/core/editorTabs.py                            |  78 +--
 pyzo/core/icons.py                                 |  32 +-
 pyzo/core/kernelbroker.py                          |   6 +-
 pyzo/core/main.py                                  |  69 +-
 pyzo/core/menu.py                                  | 146 ++--
 pyzo/core/shell.py                                 |  39 +-
 pyzo/core/shellInfoDialog.py                       |  78 +--
 pyzo/core/shellStack.py                            |  38 +-
 pyzo/core/splash.py                                |  20 +-
 pyzo/pyzokernel/guiintegration.py                  |  36 +-
 pyzo/pyzokernel/guisupport.py                      |   6 +-
 pyzo/pyzokernel/interpreter.py                     |   9 +-
 pyzo/pyzokernel/introspection.py                   |   2 +
 pyzo/pyzokernel/start.html                         |  30 +
 pyzo/pyzokernel/start.py                           |   1 +
 pyzo/resources/defaultConfig.ssdf                  |   6 +-
 pyzo/resources/fonts/linux_fonts.conf              | 204 ++++++
 pyzo/resources/translations/pyzo_ca_ES.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_de_DE.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_es_ES.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_fr_FR.tr          | 288 +++++---
 pyzo/resources/translations/pyzo_fr_FR.tr.qm       | Bin 45363 -> 48717 bytes
 pyzo/resources/translations/pyzo_nl_NL.tr          | 272 +++++---
 pyzo/resources/translations/pyzo_nl_NL.tr.qm       | Bin 33788 -> 37083 bytes
 pyzo/resources/translations/pyzo_pt_BR.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_pt_PT.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_ru_RU.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_sk_SK.tr          | 242 ++++---
 pyzo/resources/translations/pyzo_zh_CN.tr          | 765 +++++++++++----------
 pyzo/resources/translations/pyzo_zh_CN.tr.qm       | Bin 26678 -> 23223 bytes
 pyzo/resources/translations/pyzo_zh_TW.tr          | 254 ++++---
 pyzo/resources/translations/pyzo_zh_TW.tr.qm       | Bin 26452 -> 28450 bytes
 pyzo/tools/__init__.py                             |  22 +-
 pyzo/tools/pyzoFileBrowser/__init__.py             |  36 +-
 pyzo/tools/pyzoFileBrowser/browser.py              | 102 ++-
 pyzo/tools/pyzoFileBrowser/importwizard.py         |  88 +--
 pyzo/tools/pyzoFileBrowser/proxies.py              |  33 +-
 pyzo/tools/pyzoFileBrowser/tasks.py                |   4 +-
 pyzo/tools/pyzoFileBrowser/tree.py                 | 113 +--
 pyzo/tools/pyzoFileBrowser/utils.py                |  15 +-
 pyzo/tools/pyzoHistoryViewer.py                    |  15 +-
 pyzo/tools/pyzoInteractiveHelp.py                  |  21 +-
 pyzo/tools/pyzoLogger.py                           |   3 +-
 pyzo/tools/pyzoSourceStructure.py                  |  32 +-
 pyzo/tools/pyzoWebBrowser.py                       |  34 +-
 pyzo/tools/pyzoWorkspace.py                        |  39 +-
 pyzo/util/_locale.py                               |   6 +-
 pyzo/util/bootstrapconda.py                        |  54 +-
 pyzo/util/interpreters/__init__.py                 |   6 +-
 pyzo/util/paths.py                                 | 284 ++++++++
 pyzo/util/pyzowizard.py                            |  30 +-
 pyzo/util/qt/QtCore.py                             |  49 ++
 pyzo/util/qt/QtGui.py                              | 103 +++
 pyzo/util/qt/QtWidgets.py                          | 122 ++++
 pyzo/util/qt/__init__.py                           | 134 ++++
 .../extensions => util/qt/_patch}/__init__.py      |   0
 pyzo/util/qt/_patch/qcombobox.py                   | 101 +++
 pyzo/util/qt/_patch/qheaderview.py                 |  82 +++
 pyzo/util/qt/_version.py                           |   2 +
 pyzo/util/qt/uic.py                                | 223 ++++++
 pyzo/util/zon.py                                   | 478 +++++++++++++
 84 files changed, 5010 insertions(+), 2099 deletions(-)
 create mode 100644 MANIFEST.in
 create mode 100644 dllutils.py
 create mode 100644 pyzo/pyzokernel/start.html
 create mode 100644 pyzo/resources/fonts/linux_fonts.conf
 create mode 100644 pyzo/util/paths.py
 create mode 100644 pyzo/util/qt/QtCore.py
 create mode 100644 pyzo/util/qt/QtGui.py
 create mode 100644 pyzo/util/qt/QtWidgets.py
 create mode 100644 pyzo/util/qt/__init__.py
 copy pyzo/{codeeditor/extensions => util/qt/_patch}/__init__.py (100%)
 create mode 100644 pyzo/util/qt/_patch/qcombobox.py
 create mode 100644 pyzo/util/qt/_patch/qheaderview.py
 create mode 100644 pyzo/util/qt/_version.py
 create mode 100644 pyzo/util/qt/uic.py
 create mode 100644 pyzo/util/zon.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pyzo.git



More information about the debian-science-commits mailing list