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.11.1
Choose a head ref
  • 6 commits
  • 9 files changed
  • 3 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

Commits on May 4, 2023

  1. Fix build (#113)

    * Fix tests broken by mypy message changes.
    
    * Fix type changes needed for newer mypy version, plus formatting.
    brunns authored May 4, 2023
    Configuration menu
    Copy the full SHA
    2459905 View commit details
    Browse the repository at this point in the history
  2. Replace pkg_resources with packaging for Python 3.12 compatibility. (#…

    …112)
    
    * Replace pkg_resources with packaging for Python 3.12 compatibility.
    
    * Add Python 3.11 to CI testing.
    
    * Formatting fix.
    brunns authored May 4, 2023
    Configuration menu
    Copy the full SHA
    27f6edd View commit details
    Browse the repository at this point in the history
  3. Version 1.11.0 release

    sobolevn committed May 4, 2023
    Configuration menu
    Copy the full SHA
    50b1196 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Configuration menu
    Copy the full SHA
    ad3ee7f View commit details
    Browse the repository at this point in the history
Loading