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: python/mypy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.800
Choose a base ref
...
head repository: python/mypy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.812
Choose a head ref
  • 12 commits
  • 13 files changed
  • 2 contributors

Commits on Feb 10, 2021

  1. Add --exclude (#9992)

    Resolves #4675, resolves #9981.
    
    Additionally, we always ignore site-packages and node_modules,
    and directories starting with a dot. Also note that this doesn't really 
    affect import discovery; it only directly affects passing files or 
    packages to mypy.
    
    The additional check before suggesting "are you missing an
    __init__.py" didn't make any sense to me, so I removed it, appended to
    the message and downgraded the severity to note.
    
    Co-authored-by: hauntsaninja <>
    hauntsaninja authored and JukkaL committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    a1a22ca View commit details
    Browse the repository at this point in the history
  2. Bump version to 0.810

    JukkaL committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    2b52538 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2021

  1. Trigger wheel build

    JukkaL committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    57a2527 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    71285dd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8002fc4 View commit details
    Browse the repository at this point in the history
  4. Fix test_find_sources when run under site-packages (#10075)

    This was failing during wheel builds because we run the tests after
    installation (under `site-packages`), and this confused the module
    search logic. Hard code the paths to make this work in any install
    location.
    JukkaL committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    e470d93 View commit details
    Browse the repository at this point in the history
  5. Attempt to fix test

    JukkaL committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    6c5ed18 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2021

  1. Revert "Attempt to fix test"

    This reverts commit 6c5ed18.
    JukkaL committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    73f18a6 View commit details
    Browse the repository at this point in the history
  2. test_find_sources: check cwd for non root paths (#10077)

    Co-authored-by: hauntsaninja <>
    hauntsaninja authored and JukkaL committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    28668c8 View commit details
    Browse the repository at this point in the history
  3. Use relative paths when matching exclude (#10078)

    Co-authored-by: hauntsaninja <>
    hauntsaninja authored and JukkaL committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    3b0b05d View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2021

  1. Add Python script to build wheels using cibuildwheel (#10096)

    The contents are extracted from the current GitHub action definition:
    https://github.com/mypyc/mypy_mypyc-wheels/blob/master/.github/workflows/build.yml
    
    This is a fairly direct translation of the existing behavior. The
    behavior should be identical to the current workflow.
    
    The idea is to make this easier to maintain and easier to test
    locally.
    
    This should also make it easier to fix #10074.
    JukkaL committed Feb 19, 2021
    Configuration menu
    Copy the full SHA
    4373cd5 View commit details
    Browse the repository at this point in the history
  2. Bump version to 0.812

    JukkaL committed Feb 19, 2021
    Configuration menu
    Copy the full SHA
    d089891 View commit details
    Browse the repository at this point in the history
Loading