Code Monkey home page Code Monkey logo

Comments (14)

aknuds1 avatar aknuds1 commented on June 23, 2024

I noticed that too. I tried restarting the broken builds on Travis, but no
luck. It looks like a transient error though (trouble connecting to APT
repositories)?

On Mon, Nov 16, 2015 at 4:06 PM Vladimir Rutsky [email protected]
wrote:

Travis and Appveyor builds fail with different errors, e.g. in this PR #53
#53 .


Reply to this email directly or view it on GitHub
#54.

from quamash.

aknuds1 avatar aknuds1 commented on June 23, 2024

As for AppVeyor I'm not familiar with that environment, but it breaks due to missing PyQt AFAICT.

from quamash.

rutsky avatar rutsky commented on June 23, 2024

Travis is broken at least because Qt PPA was disappeared: looks like there is ppa:beineri/opt-qt542 instead of ppa:beineri/opt-qt541.
I tried to change PPA here https://github.com/rutsky/quamash/pull/1/files, but this leads to other issues, you can see here: https://travis-ci.org/rutsky/quamash/jobs/91392601 --- I think the issue is that PySide doesn't support Qt5 (and AFAIK never did).

from quamash.

aknuds1 avatar aknuds1 commented on June 23, 2024

Yeah I think it's correct that PySide is 4 only. Thanks for the fix.

On Mon, Nov 16, 2015, 18:00 Vladimir Rutsky [email protected]
wrote:

Travis is broken at least because Qt PPA was disappeared: looks like there
is ppa:beineri/opt-qt542 instead of ppa:beineri/opt-qt541.
I tried to change PPA here https://github.com/rutsky/quamash/pull/1/files,
but this leads to other issues, you can see here:
https://travis-ci.org/rutsky/quamash/jobs/91392601 --- I think the issue
is that PySide doesn't support Qt5 (and AFAIK never was).


Reply to this email directly or view it on GitHub
#54 (comment).

from quamash.

harvimt avatar harvimt commented on June 23, 2024

ppa:beineri/opt-qt542 instead of ppa:beineri/opt-qt541

that's correct, I noticed that while I was working on the Dockerfiles

On Mon, Nov 16, 2015 at 9:29 AM, Arve Knudsen [email protected]
wrote:

Yeah I think it's correct that PySide is 4 only. Thanks for the fix.

On Mon, Nov 16, 2015, 18:00 Vladimir Rutsky [email protected]
wrote:

Travis is broken at least because Qt PPA was disappeared: looks like
there
is ppa:beineri/opt-qt542 instead of ppa:beineri/opt-qt541.
I tried to change PPA here
https://github.com/rutsky/quamash/pull/1/files,
but this leads to other issues, you can see here:
https://travis-ci.org/rutsky/quamash/jobs/91392601 --- I think the issue
is that PySide doesn't support Qt5 (and AFAIK never was).


Reply to this email directly or view it on GitHub
#54 (comment).


Reply to this email directly or view it on GitHub
#54 (comment).

from quamash.

harvimt avatar harvimt commented on June 23, 2024

A fork of PySide (annoyingly) called PySide2 supports Qt5, but you need to build it from source and it isn't considered stable yet.

from quamash.

harvimt avatar harvimt commented on June 23, 2024

Alright Travis builds are fixed.

from quamash.

harvimt avatar harvimt commented on June 23, 2024

Appveyor builds are fixed (though the code is kind of ugly)
The problem was you need to set the Registry key so that the PyQt installers know where to install PyQt.

PySide tests show as passing but return a random number as a status code. (same as before)
PyQt4 tests pass, but give warnings.
PyQt5 tests don't pass, but not because PyQt5 is failing to install.

In other words #38 is not fixed yet.

from quamash.

rutsky avatar rutsky commented on June 23, 2024

PySide tests show as passing but return a random number as a status code. (same as before)

Looking at last build it's not a random number, but 0xc0000005 error (-1073741819 is signed 32-bit representation for 0xc0000005) — Access Violation.

PyQt4 tests pass, but give warnings.

Are you sure? I see here that they still fails: https://ci.appveyor.com/project/harvimt/quamash/branch/master/job/mlr059kahlpose55

from quamash.

harvimt avatar harvimt commented on June 23, 2024

you need to look at the fix-appveyor branch:
https://ci.appveyor.com/project/harvimt/quamash/build/1.0.157

On Wed, Nov 18, 2015 at 5:17 PM, Vladimir Rutsky [email protected]
wrote:

PySide tests show as passing but return a random number as a status code.
(same as before)

Looking at last build it's not a random number, but 0xc0000005 error
(-1073741819 is signed 32-bit representation for 0xc0000005) — Access
Violation
https://msdn.microsoft.com/en-us/library/cc704588%28d=lightweight,l=en-us,v=PROT.10%29.aspx
.

PyQt4 tests pass, but give warnings.

Are you sure? I see here that they still fails:
https://ci.appveyor.com/project/harvimt/quamash/branch/master/job/mlr059kahlpose55


Reply to this email directly or view it on GitHub
#54 (comment).

from quamash.

harvimt avatar harvimt commented on June 23, 2024

(maybe I should merge that into master before I close the issue)

On Wed, Nov 18, 2015 at 5:19 PM, Mark Harviston [email protected] wrote:

you need to look at the fix-appveyor branch:
https://ci.appveyor.com/project/harvimt/quamash/build/1.0.157

On Wed, Nov 18, 2015 at 5:17 PM, Vladimir Rutsky <[email protected]

wrote:

PySide tests show as passing but return a random number as a status code.
(same as before)

Looking at last build it's not a random number, but 0xc0000005 error
(-1073741819 is signed 32-bit representation for 0xc0000005) — Access
Violation
https://msdn.microsoft.com/en-us/library/cc704588%28d=lightweight,l=en-us,v=PROT.10%29.aspx
.

PyQt4 tests pass, but give warnings.

Are you sure? I see here that they still fails:
https://ci.appveyor.com/project/harvimt/quamash/branch/master/job/mlr059kahlpose55


Reply to this email directly or view it on GitHub
#54 (comment).

from quamash.

harvimt avatar harvimt commented on June 23, 2024

Looking at last build it's not a random number, but 0xc0000005 error
(-1073741819 is signed 32-bit representation for 0xc0000005) — Access
Violation
https://msdn.microsoft.com/en-us/library/cc704588%28d=lightweight,l=en-us,v=PROT.10%29.aspx
.

So a segfault. Hrm that's not good.

On Wed, Nov 18, 2015 at 5:19 PM, Mark Harviston [email protected] wrote:

(maybe I should merge that into master before I close the issue)

On Wed, Nov 18, 2015 at 5:19 PM, Mark Harviston [email protected]
wrote:

you need to look at the fix-appveyor branch:
https://ci.appveyor.com/project/harvimt/quamash/build/1.0.157

On Wed, Nov 18, 2015 at 5:17 PM, Vladimir Rutsky <
[email protected]> wrote:

PySide tests show as passing but return a random number as a status
code. (same as before)

Looking at last build it's not a random number, but 0xc0000005 error
(-1073741819 is signed 32-bit representation for 0xc0000005) — Access
Violation
https://msdn.microsoft.com/en-us/library/cc704588%28d=lightweight,l=en-us,v=PROT.10%29.aspx
.

PyQt4 tests pass, but give warnings.

Are you sure? I see here that they still fails:
https://ci.appveyor.com/project/harvimt/quamash/branch/master/job/mlr059kahlpose55


Reply to this email directly or view it on GitHub
#54 (comment).

from quamash.

harvimt avatar harvimt commented on June 23, 2024

this is now in master

from quamash.

rutsky avatar rutsky commented on June 23, 2024

Thanks!

from quamash.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.