10000 Comparing bazel-contrib:main...ChrisCummins:master · bazel-contrib/rules_python · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bazel-contrib/rules_python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: ChrisCummins/rules_python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 5, 2020

  1. Add a timeout attribute to pip_import rules.

    The combination of a large requirements.txt file and a slow network can
    cause the default timeout for repository_ctx.execute() to be reached.
    This patch exposes that timeout to the pip_import() caller so they can
    manually specify a longer timeout. E.g.
    
        pip_import(
            name = "requirements",
            requirements = "//long_list_of_requirements.txt",
            timeout = 3600,
        )
    ChrisCummins authored and brandjon committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    6915c78 View commit details
    Browse the repository at this point in the history
  2. Regenerate documentation

    brandjon committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    8dd4321 View commit details
    Browse the repository at this point in the history
Loading
0