File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -781,13 +781,13 @@ def _test_single_version_platform_override_errors(env):
781
781
overrides = [
782
782
_single_version_platform_override (python_version = "3.12" , platform = "foo" ),
783
783
],
784
- want_error = "The 'python_version' attribute needs to conform to PEP440 versions , got: '3.12'" ,
784
+ want_error = "The 'python_version' attribute needs to specify an 'X.Y.Z' semver-compatible version , got: '3.12'" ,
785
785
),
786
786
struct (
787
787
overrides = [
788
788
_single_version_platform_override (python_version = "3.12.1+my_build" , platform = "foo" ),
789
789
],
790
- want_error = "The 'python_version' attribute needs to specify an 'X.Y.Z' semver-compatible version, got: '3.12.1+my_build '" ,
790
+ want_error = "The 'python_version' attribute needs to specify an 'X.Y.Z' semver-compatible version, got: '3.12.1+my.build '" ,
791
791
),
792
792
]:
793
793
errors = []
You can’t perform that action at this time.
0 commit comments