Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 023f602

Browse files
committed
Merge pull request #33 from RoPP/python
Follow up libsass upstream 3.0.2
2 parents 85f2969 + 7adc3f6 commit 023f602

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

docs/changes.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Changelog
22
=========
33

4+
Version 0.6.2
5+
-------------
6+
7+
To be released.
8+
9+
- Follow up the libsass upstream: :upcommit:`3.0.2` ---
10+
See the `release note`__ of libsass.
11+
12+
__ https://github.com/sass/libsass/releases/tag/3.0.2
13+
14+
415
Version 0.6.1
516
-------------
617

sass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
__all__ = ('MODES', 'OUTPUT_STYLES', 'SOURCE_COMMENTS', 'CompileError',
2626
'and_join', 'compile')
27-
__version__ = '0.6.1'
27+
__version__ = '0.6.2'
2828

2929

3030
#: (:class:`collections.Mapping`) The dictionary of output styles.

sasstests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def normalize_path(path):
6363
'version': 3,
6464
'file': 'test/a.css',
6565
'sources': [normalize_source_map_path('test/a.scss')],
66+
'sourcesContent': [],
6667
'names': [],
6768
'mappings': ';AAKA;EAHE,kBAAkB;;EAIpB,KAAK;IAED,OAAO'
6869
}
@@ -147,7 +148,6 @@ class CompileTestCase(unittest.TestCase):
147148
def test_compile_required_arguments(self):
148149
self.assertRaises(TypeError, sass.compile)
149150

150-
151151
def test_compile_takes_only_keywords(self):
152152
self.assertRaises(TypeError, sass.compile, 'a { color: blue; }')
153153

@@ -406,6 +406,7 @@ def test_build_one(self):
406406
'version': 3,
407407
'file': '../test/b.css',
408408
'sources': [normalize_source_map_path('../test/b.scss')],
409+
'sourcesContent': [],
409410
'names': [],
410411
'mappings': ';AAAA,EAAE;EAEE,WAAW'
411412
},
@@ -423,6 +424,7 @@ def test_build_one(self):
423424
'version': 3,
424425
'file': '../test/d.css',
425426
'sources': [normalize_source_map_path('../test/d.scss')],
427+
'sourcesContent': [],
426428
'names': [],
427429
'mappings': ';AAKA;EAHE,kBAAkB;;EAIpB,KAAK;IAED,MAAM'
428430
},

0 commit comments

Comments
 (0)