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: typeddjango/pytest-mypy-plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.10.0
Choose a base ref
...
head repository: typeddjango/pytest-mypy-plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.10.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Oct 26, 2022

  1. Fix compatibility with pytest 7.2 (#106)

    With pytest 7.2, the remaining parts of the "py.path" library got vendored, to
    get rid of the dependency: pytest-dev/pytest#10396
    
    However, this breaks due to pytest_mypy_plugins importing private API:
    
        File ".../pytest_mypy_plugins/collect.py", line 13, in <module>
            from py._path.local import LocalPath
        ModuleNotFoundError: No module named 'py._path'; 'py' is not a package
    
    Use py.path.local instead (the public name of the same type), which is part of
    the shim included in pytest.
    The-Compiler authored Oct 26, 2022
    Configuration menu
    Copy the full SHA
    e212be4 View commit details
    Browse the repository at this point in the history
  2. Version 1.10.1 release (#107)

    * Version 1.10.1 release
    
    * Add 7.2 to the test
    
    * Fix types
    sobolevn authored Oct 26, 2022
    Configuration menu
    Copy the full SHA
    2a4fcd4 View commit details
    Browse the repository at this point in the history
Loading