Skip to content

Commit

Permalink
Enable lexbor, refactor modest
Browse files Browse the repository at this point in the history
  • Loading branch information
rushter committed Aug 22, 2021
1 parent 55a659d commit 85c767f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -6,6 +6,7 @@ include CHANGES.rst

include selectolax/*
include selectolax/lexbor/*
include selectolax/modest/*

include selectolax/lexbor/*.so
exclude selectolax/*.so
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions selectolax/parser.pyx
Expand Up @@ -2,8 +2,8 @@

from cpython cimport bool

include "selection.pxi"
include "node.pxi"
include "modest/selection.pxi"
include "modest/node.pxi"
include "utils.pxi"

MAX_HTML_INPUT_SIZE = 8e+7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@
USE_STATIC = False
USE_CYTHON = False
PLATFORM = 'windows_nt' if platform.system() == 'Windows' else 'posix'
INCLUDE_LEXBOR = bool(os.environ.get('USE_LEXBOR', False))
INCLUDE_LEXBOR = bool(os.environ.get('USE_LEXBOR', True))

try:
from Cython.Build import cythonize
Expand Down

0 comments on commit 85c767f

Please sign in to comment.