File: common.py

package info (click to toggle)
dacite 1.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 332 kB
  • sloc: python: 1,870; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
import sys

import pytest

literal_support = init_var_type_support = pytest.mark.skipif(sys.version_info < (3, 8), reason="requires Python 3.8")
pep_604_support = pytest.mark.skipif(sys.version_info < (3, 10), reason="requires Python 3.10")
type_hints_with_generic_collections_support = type_hinting_using_standard_collections = pytest.mark.skipif(
    sys.version_info < (3, 9), reason="requires Python 3.9"
)