Code Monkey home page Code Monkey logo

Comments (6)

almarklein avatar almarklein commented on June 5, 2024 1

If our way of using annotations is indeed "incompatible", then I'd rather do something to fix it. Especially if it requires changing the spelling, we better do it sooner than later.

If this issue was limited to this repo, I would not care so much, but it applies to all code that defines python shaders.

from pyshader.

almarklein avatar almarklein commented on June 5, 2024

This is also a problem in any library that uses pyshader.

from pyshader.

almarklein avatar almarklein commented on June 5, 2024

The weird thing is, if I change the spelling to what we (more or less) had earlier:

@python2shader
def vertex_shader(
    index: Input("VertexId", i32),
    out_pos: Output("Position", vec4),
    out_color: Output(0, vec3),
):
    ...

-> flake8 still produces the error for the arguments, which are str...

from pyshader.

almarklein avatar almarklein commented on June 5, 2024

We could use default-values instead of annotations. Though it would be sad, because we are using it exactly for its purpose, to annotate types. It's just shader types...

from pyshader.

Korijn avatar Korijn commented on June 5, 2024

The weird thing is, if I change the spelling to what we (more or less) had earlier:

@python2shader
def vertex_shader(
    index: Input("VertexId", i32),
    out_pos: Output("Position", vec4),
    out_color: Output(0, vec3),
):
    ...

-> flake8 still produces the error for the arguments, which are str...

That's either because str are considered "forward type declarations" or because flake8 does not evaluate the type declarations. I was bothered by this too and decided to ditch F821 in pylinalg. With good enough test coverage, it's not a big deal imho.

from pyshader.

Korijn avatar Korijn commented on June 5, 2024

Looking at the discussion here: PyCQA/pyflakes#529

Our use seems to be incompatible with the PEP indeed. Attaching arbitrary data is not yet supported. Apparently we should keep an eye out for PEP 593.

For now I suggest we just keep using it and ignore the flake8 error.

from pyshader.

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.