Skip to content

Commit 1368338

Browse files
committed
Change version to 0.991+dev in preparation for the point release
1 parent b71dc3d commit 1368338

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

misc/upload-pypi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def check_sdist(dist: Path, version: str) -> None:
7575

7676

7777
def spot_check_dist(dist: Path, version: str) -> None:
78-
items = [item for item in dist.iterdir() if is_whl_or_tar(item.name)]
78+
items = [item for item in dist.iterdir() if is_whl_or_tar(item.name) and 'wasm' not in item.name]
7979
assert len(items) > 10
8080
assert all(version in item.name for item in items)
8181
assert any(item.name.endswith("py3-none-any.whl") for item in items)
@@ -93,7 +93,7 @@ def tmp_twine() -> Iterator[Path]:
9393

9494
def upload_dist(dist: Path, dry_run: bool = True) -> None:
9595
with tmp_twine() as twine:
96-
files = [item for item in dist.iterdir() if is_whl_or_tar(item.name)]
96+
files = [item for item in dist.iterdir() if is_whl_or_tar(item.name) and 'wasm' not in item.name]
9797
cmd: list[Any] = [twine, "upload"]
9898
cmd += files
9999
if dry_run:

mypy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# - Release versions have the form "0.NNN".
99
# - Dev versions have the form "0.NNN+dev" (PLUS sign to conform to PEP 440).
1010
# - For 1.0 we'll switch back to 1.2.3 form.
11-
__version__ = "0.990"
11+
__version__ = "0.991+dev"
1212
base_version = __version__
1313

1414
mypy_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))

0 commit comments

Comments
 (0)