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,6 +3,10 @@ import logging
import re
import random
import itertools
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,3 +1,6 @@
try:
from functools import cached_property
except ImportError:
from cached_property import cached_property
from gixy.directives.directive import Directive

View File

@ -1,6 +1,10 @@
import logging
import codecs
import six
try:
from functools import cached_property
except ImportError:
from cached_property import cached_property
from pyparsing import (

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',