File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change 11
11
import shutil
12
12
import sys
13
13
import tempfile
14
- import time
15
14
16
15
from setuptools import Extension , setup
17
16
@@ -154,17 +153,6 @@ def version(sass_filename='sass.py'):
154
153
return node .value .s
155
154
156
155
157
- def get_unstable_commit ():
158
- try :
159
- with open ('.unstable-release' ) as f :
160
- return f .read ().strip () or None
161
- except (IOError , OSError ):
162
- return
163
-
164
-
165
- unstable_commit = get_unstable_commit ()
166
-
167
-
168
156
def readme ():
169
157
try :
170
158
with open (os .path .join (os .path .dirname (__file__ ), 'README.rst' )) as f :
@@ -202,12 +190,11 @@ def run(self):
202
190
203
191
204
192
setup (
205
- name = 'libsass' + ( '-unstable' if unstable_commit else '' ) ,
193
+ name = 'libsass' ,
206
194
description = 'SASS for Python: '
207
195
'A straightforward binding of libsass for Python.' ,
208
196
long_description = readme (),
209
- version = version () + (time .strftime ('.%Y%m%d.' ) + unstable_commit
210
- if unstable_commit else '' ),
197
+ version = version (),
211
198
ext_modules = [sass_extension ],
212
199
packages = ['sassutils' ],
213
200
py_modules = ['sass' , 'sassc' , 'sasstests' ],
You can’t perform that action at this time.
0 commit comments