-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix mypy stub gen in multiprocessing case
- Loading branch information
Showing
11 changed files
with
40 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "pyprotostuben" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
description = "Generate Python MyPy stub modules from protobuf files." | ||
authors = ["zerlok <[email protected]>"] | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from pyprotostuben.codegen.mypy.plugin import MypyStubProtocPlugin | ||
from tests.integration.case import DirCaseProvider | ||
from tests.integration.cases.case import DirCaseProvider | ||
|
||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin()) | ||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin(), "no-parallel") | ||
mypy_case_multiprocessing = DirCaseProvider(__file__, MypyStubProtocPlugin()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyprotostuben.codegen.mypy.plugin import MypyStubProtocPlugin | ||
from tests.integration.case import DirCaseProvider | ||
from tests.integration.cases.case import DirCaseProvider | ||
|
||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin()) | ||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin(), "no-parallel") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyprotostuben.codegen.mypy.plugin import MypyStubProtocPlugin | ||
from tests.integration.case import DirCaseProvider | ||
from tests.integration.cases.case import DirCaseProvider | ||
|
||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin()) | ||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin(), "no-parallel") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyprotostuben.codegen.mypy.plugin import MypyStubProtocPlugin | ||
from tests.integration.case import DirCaseProvider | ||
from tests.integration.cases.case import DirCaseProvider | ||
|
||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin()) | ||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin(), "no-parallel") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyprotostuben.codegen.mypy.plugin import MypyStubProtocPlugin | ||
from tests.integration.case import DirCaseProvider | ||
from tests.integration.cases.case import DirCaseProvider | ||
|
||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin()) | ||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin(), "no-parallel") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from pyprotostuben.codegen.mypy.plugin import MypyStubProtocPlugin | ||
from tests.integration.case import DirCaseProvider | ||
from tests.integration.cases.case import DirCaseProvider | ||
|
||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin()) | ||
mypy_case = DirCaseProvider(__file__, MypyStubProtocPlugin(), "no-parallel") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters