Skip to content

Commit

Permalink
fix(pypi): change bdist_wheels to bdist_wheel
Browse files Browse the repository at this point in the history
Change the incorrect command bdist_wheels to bdist_wheel.
  • Loading branch information
danth authored and relekang committed Mar 2, 2020
1 parent 22146ea commit c4db509
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion semantic_release/defaults.cfg
Expand Up @@ -11,5 +11,5 @@ version_source=commit
commit_message=Automatically generated by python-semantic-release
dist_path=dist
remove_dist=true
build_commands=sdist bdist_wheels
build_commands=sdist bdist_wheel
branch=master
6 changes: 3 additions & 3 deletions tests/test_dist.py
Expand Up @@ -4,10 +4,10 @@


@pytest.mark.parametrize('commands', [
'sdist bdist_wheels',
'sdist bdist_wheel',
'sdist',
'bdist_wheels',
'sdist bdist_wheels custom_cmd'
'bdist_wheel',
'sdist bdist_wheel custom_cmd'
])
def test_build_command(mocker, commands):
mocker.patch('semantic_release.dist.config.get', lambda *a: commands)
Expand Down

0 comments on commit c4db509

Please sign in to comment.