TriggerMail / rules_pyz

Bazel Python rules that package everything in an executable zip
Apache License 2.0
29 stars 19 forks source link

Duplicate entries in deps #55

Open therc opened 5 years ago

therc commented 5 years ago

Somehow, from this line,

isort==4.3.4

one gets

    pyz_library(
        name="isort",
        deps=[
            "futures",
            "futures",
        ] + ["@pypi_isort//:lib"],
        licenses=["notice"],
        visibility=["//visibility:public"],
    )
evanj commented 5 years ago

Hmm must be something about how the code tries to detect extras... I should probably say: We've decided to not use Bazel, so this is basically unmaintained. I'll try to add something to the README to say something like this. I am unlikely to have time to look into this, sorry. :(

therc commented 5 years ago

Thanks for the update, I think a few people have expressed interest in forking the project, so this means it's OK to do so now. :-) Did you work on pingservice in a former life, BTW?

evanj commented 5 years ago

Hey! Yes in fact I did work on that! Did you work on Blogsearch or something similar?