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: pre-commit/mirrors-mypy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.991
Choose a base ref
...
head repository: pre-commit/mirrors-mypy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.11.1
Choose a head ref

Commits on Feb 7, 2023

  1. Mirror: 1.0.0

    github-actions[bot] committed Feb 7, 2023
    Copy the full SHA
    dc69126 View commit details

Commits on Feb 18, 2023

  1. Mirror: 1.0.1

    github-actions[bot] committed Feb 18, 2023
    Copy the full SHA
    17a61c4 View commit details

Commits on Mar 7, 2023

  1. Mirror: 1.1.1

    github-actions[bot] committed Mar 7, 2023
    Copy the full SHA
    b176ead View commit details

Commits on Apr 7, 2023

  1. Mirror: 1.2.0

    github-actions[bot] committed Apr 7, 2023
    Copy the full SHA
    b84480d View commit details

Commits on Apr 30, 2023

  1. Remove example flag that we must not speak of

    I just had a user copy-paste this, thinking it was the recommended way to run mypy. I'd prefer if users who blindly copy-paste things didn't pick up a flag that's highly discouraged
    hauntsaninja authored Apr 30, 2023
    Copy the full SHA
    ddf9b81 View commit details
  2. Merge pull request #85 from hauntsaninja/patch-1

    Remove example flag that we must not speak of
    asottile authored Apr 30, 2023
    Copy the full SHA
    961f38d View commit details

Commits on May 11, 2023

  1. Mirror: 1.3.0

    github-actions[bot] committed May 11, 2023
    Copy the full SHA
    bd424e4 View commit details

Commits on Jun 21, 2023

  1. Mirror: 1.4.0

    github-actions[bot] committed Jun 21, 2023
    Copy the full SHA
    eef2a6b View commit details

Commits on Jun 26, 2023

  1. Mirror: 1.4.1

    github-actions[bot] committed Jun 26, 2023
    Copy the full SHA
    6e63c9e View commit details

Commits on Aug 11, 2023

  1. Mirror: 1.5.0

    github-actions[bot] committed Aug 11, 2023
    Copy the full SHA
    92192ce View commit details

Commits on Aug 17, 2023

  1. Mirror: 1.5.1

    github-actions[bot] committed Aug 17, 2023
    Copy the full SHA
    08cbc46 View commit details

Commits on Oct 11, 2023

  1. Mirror: 1.6.0

    github-actions[bot] committed Oct 11, 2023
    Copy the full SHA
    b3b011d View commit details

Commits on Oct 18, 2023

  1. Mirror: 1.6.1

    github-actions[bot] committed Oct 18, 2023
    Copy the full SHA
    26de894 View commit details

Commits on Nov 11, 2023

  1. Mirror: 1.7.0

    github-actions[bot] committed Nov 11, 2023
    Copy the full SHA
    4c8a8c7 View commit details

Commits on Nov 24, 2023

  1. Mirror: 1.7.1

    github-actions[bot] committed Nov 24, 2023
    Copy the full SHA
    4daa14b View commit details

Commits on Dec 22, 2023

  1. Mirror: 1.8.0

    github-actions[bot] committed Dec 22, 2023
    Copy the full SHA
    8cd2d40 View commit details

Commits on Mar 9, 2024

  1. Mirror: 1.9.0

    github-actions[bot] committed Mar 9, 2024
    Copy the full SHA
    9db9854 View commit details

Commits on Apr 25, 2024

  1. Mirror: 1.10.0

    github-actions[bot] committed Apr 25, 2024
    Copy the full SHA
    e5ea667 View commit details

Commits on Jun 25, 2024

  1. Mirror: 1.10.1

    github-actions[bot] committed Jun 25, 2024
    Copy the full SHA
    6f546f3 View commit details

Commits on Jul 20, 2024

  1. Mirror: 1.11.0

    github-actions[bot] committed Jul 20, 2024
    Copy the full SHA
    81dd996 View commit details

Commits on Jul 31, 2024

  1. Mirror: 1.11.1

    github-actions[bot] committed Jul 31, 2024
    Copy the full SHA
    a22ad01 View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 .version
  2. +1 −1 README.md
  3. +1 −1 setup.py
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.991
1.11.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ To change the arguments, override the `args` as follows:
```yaml
hooks:
- id: mypy
args: [--no-strict-optional, --ignore-missing-imports]
args: [--strict, --ignore-missing-imports]
```

Because `pre-commit` runs `mypy` from an isolated virtualenv (without your
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -6,5 +6,5 @@
setup(
name='pre_commit_placeholder_package',
version='0.0.0',
install_requires=['mypy==0.991'],
install_requires=['mypy==1.11.1'],
)