Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-25 Thread Phil Thompson
On Wed, 24 Apr 2013 18:10:10 +0200, Detlev Offenbach
det...@die-offenbachs.de wrote:
 On Tuesday 23 April 2013, 22:18:34 Phil Thompson wrote:
 On Tue, 23 Apr 2013 19:53:58 +0200, Detlev Offenbach
 
 det...@die-offenbachs.de wrote:
  Hello Phil,
  
  please disregard the first part of the message. Doing some more
  investigations showed, that Windwos tricked me. Sorry for the noise.
  
  Meanwhile I found a new issue. Calling e.g. qhelpgenerator as 
 delivered
  with the lates PyQt4 with Qt5 installer gives this error message:
 
  Failed to load platform plugin minimal. Available platforms are:
 windows.
 
  In deed, the platforms plugin directory only contains qwindows.dll.
How
  can
  I overcome this issue?
 
 You'd have to copy it in from the Qt installer.
 
 I would expect it to be part of the PyQt4 installer. Why should I
install
 Qt 
 separately (and have the stuff twice)?

That's just the workaround until I update the installers.

  Yet another observation. Entering the following in a Python 3.3 shell
  gives
  a wrong output.
  
  from PyQt4.QtCore import QLibraryInfo
  QLibraryInfo.location(QLibraryInfo.BinariesPath)
  
  'C:/Qt/5.0.2/bin'
  
  
  I would have expected something like C:\Python33\Lib\site-
  packages\PyQt4, because that is where the executable reside when
  installed via the installer. How can I overcome this issue?
 
 Sounds like a problem with qt.conf. 32 bit or 64 bit installer?
 
 32 bit installer.

The location information won't be correct unless you create a
QCoreApplication instance first.

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-25 Thread Detlev Offenbach
Hi Phil,

I didn't know that. Thanks for shedding some light on my head.

Detlev

On Thursday 25 April 2013, 18:28:15 Phil Thompson wrote:
 On Wed, 24 Apr 2013 18:10:10 +0200, Detlev Offenbach
 
 det...@die-offenbachs.de wrote:
  On Tuesday 23 April 2013, 22:18:34 Phil Thompson wrote:
  On Tue, 23 Apr 2013 19:53:58 +0200, Detlev Offenbach
  
  det...@die-offenbachs.de wrote:
   Hello Phil,
   
   please disregard the first part of the message. Doing some more
   investigations showed, that Windwos tricked me. Sorry for the noise.
   
   Meanwhile I found a new issue. Calling e.g. qhelpgenerator as
  
  delivered
  
   with the lates PyQt4 with Qt5 installer gives this error message:
  
   Failed to load platform plugin minimal. Available platforms are:
  windows.
  
   In deed, the platforms plugin directory only contains qwindows.dll.
 
 How
 
   can
   I overcome this issue?
  
  You'd have to copy it in from the Qt installer.
  
  I would expect it to be part of the PyQt4 installer. Why should I
 
 install
 
  Qt
  separately (and have the stuff twice)?
 
 That's just the workaround until I update the installers.
 
   Yet another observation. Entering the following in a Python 3.3 shell
   gives
   a wrong output.
   
   from PyQt4.QtCore import QLibraryInfo
   QLibraryInfo.location(QLibraryInfo.BinariesPath)
   
   'C:/Qt/5.0.2/bin'
   
   
   I would have expected something like C:\Python33\Lib\site-
   packages\PyQt4, because that is where the executable reside 
when
   installed via the installer. How can I overcome this issue?
  
  Sounds like a problem with qt.conf. 32 bit or 64 bit installer?
  
  32 bit installer.
 
 The location information won't be correct unless you create a
 QCoreApplication instance first.
 
 Phil
 ___
 PyQt mailing listPyQt@riverbankcomputing.com
 http://www.riverbankcomputing.com/mailman/listinfo/pyqt-- 
*Detlev Offenbach*
det...@die-offenbachs.de
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-24 Thread Detlev Offenbach


On Tuesday 23 April 2013, 22:18:34 Phil Thompson wrote:
 On Tue, 23 Apr 2013 19:53:58 +0200, Detlev Offenbach
 
 det...@die-offenbachs.de wrote:
  Hello Phil,
  
  please disregard the first part of the message. Doing some more
  investigations showed, that Windwos tricked me. Sorry for the noise.
  
  Meanwhile I found a new issue. Calling e.g. qhelpgenerator as 
delivered
  with the lates PyQt4 with Qt5 installer gives this error message:
 
  Failed to load platform plugin minimal. Available platforms are:
 windows.
 
  In deed, the platforms plugin directory only contains qwindows.dll. How
  can
  I overcome this issue?
 
 You'd have to copy it in from the Qt installer.

I would expect it to be part of the PyQt4 installer. Why should I install Qt 
separately (and have the stuff twice)?

 
  Yet another observation. Entering the following in a Python 3.3 shell
  gives
  a wrong output.
  
  from PyQt4.QtCore import QLibraryInfo
  QLibraryInfo.location(QLibraryInfo.BinariesPath)
  
  'C:/Qt/5.0.2/bin'
  
  
  I would have expected something like C:\Python33\Lib\site-
  packages\PyQt4, because that is where the executable reside when
  installed via the installer. How can I overcome this issue?
 
 Sounds like a problem with qt.conf. 32 bit or 64 bit installer?

32 bit installer.

Detlev-- 
*Detlev Offenbach*
det...@die-offenbachs.de
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-23 Thread Detlev Offenbach
Hello Phil,

please disregard the first part of the message. Doing some more 
investigations showed, that Windwos tricked me. Sorry for the noise.

Meanwhile I found a new issue. Calling e.g. qhelpgenerator as delivered 
with the lates PyQt4 with Qt5 installer gives this error message:

Failed to load platform plugin minimal. Available platforms are: windows.

In deed, the platforms plugin directory only contains qwindows.dll. How can 
I overcome this issue?

Yet another observation. Entering the following in a Python 3.3 shell gives 
a wrong output.

 from PyQt4.QtCore import QLibraryInfo
 QLibraryInfo.location(QLibraryInfo.BinariesPath)
'C:/Qt/5.0.2/bin'


I would have expected something like C:\Python33\Lib\site-
packages\PyQt4, because that is where the executable reside when 
installed via the installer. How can I overcome this issue?


Regards,
Detlev

On Monday 22 April 2013, 21:39:58 Phil Thompson wrote:
 On Mon, 22 Apr 2013 20:34:42 +0200, Detlev Offenbach
 
 det...@die-offenbachs.de wrote:
  Hello,
  
  I am observing a strange behavior when using the PyQt4, Python 3.3, 
Qt5
  installer when starting eric5. There appears a dialog saying something
  like
  'There is no medium in drive D:'. This message appears twice. 
Selecting
  Cancel keeps eric going. It does not appear when using the installer for
  
  Qt4. What is going on here?
 
 Absolutely no idea. 64 bit or 32 bit?
 
  Some installers seem to be missing the QScintilla.api file.
  
  Regards,
  Detlev
 
 Phil
 ___
 PyQt mailing listPyQt@riverbankcomputing.com
 http://www.riverbankcomputing.com/mailman/listinfo/pyqt-- 
*Detlev Offenbach*
det...@die-offenbachs.de
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-23 Thread Phil Thompson
On Tue, 23 Apr 2013 19:53:58 +0200, Detlev Offenbach
det...@die-offenbachs.de wrote:
 Hello Phil,
 
 please disregard the first part of the message. Doing some more 
 investigations showed, that Windwos tricked me. Sorry for the noise.
 
 Meanwhile I found a new issue. Calling e.g. qhelpgenerator as delivered 
 with the lates PyQt4 with Qt5 installer gives this error message:
 
 Failed to load platform plugin minimal. Available platforms are:
windows.
 
 In deed, the platforms plugin directory only contains qwindows.dll. How
 can 
 I overcome this issue?

You'd have to copy it in from the Qt installer.

 Yet another observation. Entering the following in a Python 3.3 shell
 gives 
 a wrong output.
 
 from PyQt4.QtCore import QLibraryInfo
 QLibraryInfo.location(QLibraryInfo.BinariesPath)
 'C:/Qt/5.0.2/bin'

 
 I would have expected something like C:\Python33\Lib\site-
 packages\PyQt4, because that is where the executable reside when 
 installed via the installer. How can I overcome this issue?

Sounds like a problem with qt.conf. 32 bit or 64 bit installer?

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[PyQt] ANN: PyQt v4.10.1 Released

2013-04-22 Thread Phil Thompson
PyQt v4.10.1 has been released. This contains a couple of new features as
well as the usual bug fixes.

QtCore.pyqtSetPickleProtocol() and QtCore.pyqtPickleProtocol() have been
added to set and get the protocol used to pickle Python objects when
serialising them for Qt.

Added the --resource-suffix option to pyuic4.

There is a new (optional) build system (configure-ng.py) which will be
compatible with SIP v5 and will eventually support cross-compilation.

The Qt5 based Windows installers now include Qt v5.0.2.

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-22 Thread Dmitrijs Ledkovs
On 22 April 2013 11:43, Phil Thompson p...@riverbankcomputing.com wrote:
 PyQt v4.10.1 has been released. This contains a couple of new features as
 well as the usual bug fixes.

 QtCore.pyqtSetPickleProtocol() and QtCore.pyqtPickleProtocol() have been
 added to set and get the protocol used to pickle Python objects when
 serialising them for Qt.

 Added the --resource-suffix option to pyuic4.

 There is a new (optional) build system (configure-ng.py) which will be
 compatible with SIP v5 and will eventually support cross-compilation.

 The Qt5 based Windows installers now include Qt v5.0.2.

 Phil


In my experience configure-ng.py was required to do a PyQt build
against Qt5 built with the -no-deprecated flag.

Regards,

Dmitrijs.
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-22 Thread Phil Thompson
On Mon, 22 Apr 2013 11:56:08 +0100, Dmitrijs Ledkovs x...@ubuntu.com
wrote:
 On 22 April 2013 11:43, Phil Thompson p...@riverbankcomputing.com
wrote:
 PyQt v4.10.1 has been released. This contains a couple of new features
as
 well as the usual bug fixes.

 QtCore.pyqtSetPickleProtocol() and QtCore.pyqtPickleProtocol() have
been
 added to set and get the protocol used to pickle Python objects when
 serialising them for Qt.

 Added the --resource-suffix option to pyuic4.

 There is a new (optional) build system (configure-ng.py) which will be
 compatible with SIP v5 and will eventually support cross-compilation.

 The Qt5 based Windows installers now include Qt v5.0.2.

 Phil
 
 
 In my experience configure-ng.py was required to do a PyQt build
 against Qt5 built with the -no-deprecated flag.

I'm not sure what you mean. I've just found a bug in the handling of
--no-deprecated in configure-ng.py which means that it's value is always
false. configure.py should be fine however.

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-22 Thread Detlev Offenbach
Hello,

I am observing a strange behavior when using the PyQt4, Python 3.3, Qt5 
installer when starting eric5. There appears a dialog saying something like 
'There is no medium in drive D:'. This message appears twice. Selecting 
Cancel keeps eric going. It does not appear when using the installer for 
Qt4. What is going on here?

Some installers seem to be missing the QScintilla.api file.

Regards,
Detlev

On Monday 22 April 2013, 11:43:59 Phil Thompson wrote:
 PyQt v4.10.1 has been released. This contains a couple of new features 
as
 well as the usual bug fixes.
 
 QtCore.pyqtSetPickleProtocol() and QtCore.pyqtPickleProtocol() have 
been
 added to set and get the protocol used to pickle Python objects when
 serialising them for Qt.
 
 Added the --resource-suffix option to pyuic4.
 
 There is a new (optional) build system (configure-ng.py) which will be
 compatible with SIP v5 and will eventually support cross-compilation.
 
 The Qt5 based Windows installers now include Qt v5.0.2.
 
 Phil
 ___
 PyQt mailing listPyQt@riverbankcomputing.com
 http://www.riverbankcomputing.com/mailman/listinfo/pyqt-- 
*Detlev Offenbach*
det...@die-offenbachs.de
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] ANN: PyQt v4.10.1 Released

2013-04-22 Thread Phil Thompson
On Mon, 22 Apr 2013 20:34:42 +0200, Detlev Offenbach
det...@die-offenbachs.de wrote:
 Hello,
 
 I am observing a strange behavior when using the PyQt4, Python 3.3, Qt5 
 installer when starting eric5. There appears a dialog saying something
 like 
 'There is no medium in drive D:'. This message appears twice. Selecting 
 Cancel keeps eric going. It does not appear when using the installer for

 Qt4. What is going on here?

Absolutely no idea. 64 bit or 32 bit?

 Some installers seem to be missing the QScintilla.api file.
 
 Regards,
 Detlev

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt