File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def check_sdist(dist: Path, version: str) -> None:
75
75
76
76
77
77
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 ]
79
79
assert len (items ) > 10
80
80
assert all (version in item .name for item in items )
81
81
assert any (item .name .endswith ("py3-none-any.whl" ) for item in items )
@@ -93,7 +93,7 @@ def tmp_twine() -> Iterator[Path]:
93
93
94
94
def upload_dist (dist : Path , dry_run : bool = True ) -> None :
95
95
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 ]
97
97
cmd : list [Any ] = [twine , "upload" ]
98
98
cmd += files
99
99
if dry_run :
Original file line number Diff line number Diff line change 8
8
# - Release versions have the form "0.NNN".
9
9
# - Dev versions have the form "0.NNN+dev" (PLUS sign to conform to PEP 440).
10
10
# - For 1.0 we'll switch back to 1.2.3 form.
11
- __version__ = "0.990 "
11
+ __version__ = "0.991+dev "
12
12
base_version = __version__
13
13
14
14
mypy_dir = os .path .abspath (os .path .dirname (os .path .dirname (__file__ )))
You can’t perform that action at this time.
0 commit comments