CI didn't notice that the fractional seconds in the new SQL Server
DATETIMEOFFSET test are not available on Python 3.6. It was
inadvertently assumed this was a Python 2 incompatibility.
Change-Id: I9839eafbf7c37512eef1ecf666846983f9651c02
(cherry picked from commit
55f6d61e85b7f16df0b77f1c55a4fb051cd696e3)
lambda: sys.version_info < (3,), "Python version 3.xx is required."
)
+ @property
+ def python37(self):
+ return exclusions.skip_if(
+ lambda: sys.version_info < (3, 7),
+ "Python version 3.7 or greater is required.",
+ )
+
@property
def cpython(self):
return exclusions.only_if(
),
None,
True,
- testing.requires.python3,
+ testing.requires.python37,
),
(
"dto_param_datetime_naive",