Skip to content

Commit

Permalink
Merge 5a46f98 into b08f892
Browse files Browse the repository at this point in the history
  • Loading branch information
clarete committed Jun 24, 2018
2 parents b08f892 + 5a46f98 commit 36c35e7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conftest.py
Expand Up @@ -4,7 +4,6 @@
from __future__ import print_function

import logging
from pathlib import Path

import pytest

Expand All @@ -17,6 +16,7 @@
from scss.extension.extra import ExtraExtension
from scss.extension.fonts import FontsExtension
from scss.extension.compass import CompassExtension
from scss.util import Path

try:
import fontforge
Expand Down
2 changes: 1 addition & 1 deletion scss/compiler.py
Expand Up @@ -6,7 +6,7 @@
from collections import defaultdict
from enum import Enum
import logging
from pathlib import Path
from .util import Path
import re
import sys
import warnings
Expand Down
2 changes: 1 addition & 1 deletion scss/extension/core.py
Expand Up @@ -7,7 +7,7 @@
from itertools import product
import math
import os.path
from pathlib import PurePosixPath
from ..util import PurePosixPath

from six.moves import xrange

Expand Down
2 changes: 1 addition & 1 deletion scss/legacy.py
Expand Up @@ -4,7 +4,7 @@
from __future__ import division

import os
from pathlib import Path
from .util import Path
from collections import namedtuple

import six
Expand Down
2 changes: 1 addition & 1 deletion scss/source.py
Expand Up @@ -5,7 +5,7 @@

import hashlib
import logging
from pathlib import Path
from .util import Path
import re

import six
Expand Down
5 changes: 5 additions & 0 deletions scss/util.py
Expand Up @@ -14,6 +14,11 @@

from scss import config

try:
from pathlib2 import Path, PurePosixPath
except ImportError:
from pathlib import Path, PurePosixPath

BASE_DIR = os.path.dirname(__file__)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -17,7 +17,7 @@
install_requires = ['six']
if sys.version_info < (3, 4):
install_requires.append('enum34')
install_requires.append('pathlib')
install_requires.append('pathlib2')
if sys.version_info < (2, 7):
install_requires.append('ordereddict')

Expand Down

0 comments on commit 36c35e7

Please sign in to comment.