pull/123/merge
Michał Górny 2023-01-15 22:31:57 +08:00 committed by GitHub
commit b770ca1351
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 6 deletions

View File

@ -3,7 +3,11 @@ import logging
import re
import random
import itertools
from cached_property import cached_property
try:
from functools import cached_property
except ImportError:
from cached_property import cached_property
import gixy.core.sre_parse.sre_parse as sre_parse

View File

@ -1,4 +1,7 @@
from cached_property import cached_property
try:
from functools import cached_property
except ImportError:
from cached_property import cached_property
from gixy.directives.directive import Directive
from gixy.core.variable import Variable

View File

@ -1,7 +1,11 @@
import logging
import codecs
import six
from cached_property import cached_property
try:
from functools import cached_property
except ImportError:
from cached_property import cached_property
from pyparsing import (
Literal, Suppress, White, Word, alphanums, Forward, Group, Optional, Combine,

View File

@ -1,5 +1,5 @@
pyparsing>=1.5.5
cached-property>=1.2.0
cached-property>=1.2.0;python_version<"3.8"
argparse>=1.4.0
six>=1.1.0
Jinja2>=2.8

View File

@ -18,7 +18,7 @@ setup(
url='https://github.com/yandex/gixy',
install_requires=[
'pyparsing>=1.5.5',
'cached-property>=1.2.0',
'cached-property>=1.2.0;python_version<"3.8"',
'argparse>=1.4.0;python_version<"3.2"',
'six>=1.1.0',
'Jinja2>=2.8',