-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow the
name_scheme
argument to python_wheel
to be a list inste…
…ad of a single string. (#171) * Allow the `name_scheme` argument to `python_wheel` to be a list instead of a single string. * Update the comment and tidy a bit * Simplify the build def further, update the comment, and add a test * Add missing newline at eof * Add a comment on the packages we are using for testing
- Loading branch information
1 parent
8e78b49
commit 2bb0d87
Showing
7 changed files
with
71 additions
and
35 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,5 +1,5 @@ | ||
[Please] | ||
Version = >=17.10.1 | ||
Version = >=17.10.3 | ||
|
||
[Build] | ||
hashcheckers = sha256 | ||
|
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 +1 @@ | ||
1.7.1 | ||
1.7.2 |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import unittest | ||
|
||
|
||
class NameSchemeTest(unittest.TestCase): | ||
|
||
# The click python_wheel has no name_scheme argument, and is thus using the default value which | ||
# is a list. | ||
def test_click_is_importable(self): | ||
import click | ||
self.assertIsNotNone(click.command) | ||
|
||
# The click-log python_wheel has an explicit name_scheme argument which is a string. | ||
def test_click_log_is_importable(self): | ||
import click_log | ||
self.assertIsNotNone(click_log.basic_config) |
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