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

Commit 87d6426

Browse files
committed
Python 3.5 support
1 parent 1e96b0a commit 87d6426

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ python:
1010
- 2.7
1111
- 3.3
1212
- 3.4
13+
- 3.5
1314
install:
1415
- pip install -e . "flake8 >= 2.4.0" "Werkzeug >= 0.9" coverage coveralls
1516
script:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ distribution/deployment. That means you can add just ``libsass`` into
2424
your ``setup.py``'s ``install_requires`` list or ``requirements.txt`` file.
2525
Need no Ruby nor Node.js.
2626

27-
It currently supports CPython 2.6, 2.7, 3.3, 3.4, and PyPy 2.3+!
27+
It currently supports CPython 2.6, 2.7, 3.3--3.5, and PyPy 2.3+!
2828

2929
.. _SASS: http://sass-lang.com/
3030
.. _Libsass: https://github.com/sass/libsass

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ distribution/deployment. That means you can add just ``libsass`` into
88
your :file:`setup.py`'s ``install_requires`` list or :file:`requirements.txt`
99
file.
1010

11-
It currently supports CPython 2.6, 2.7, 3.3, 3.4, and PyPy 2.3!
11+
It currently supports CPython 2.6, 2.7, 3.3--3.5, and PyPy 2.3+!
1212

1313
.. _SASS: http://sass-lang.com/
1414
.. _Libsass: https://github.com/sass/libsass

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,10 @@ def run(self):
265265
'Programming Language :: Python :: 3',
266266
'Programming Language :: Python :: 3.3',
267267
'Programming Language :: Python :: 3.4',
268+
'Programming Language :: Python :: 3.5',
269+
'Programming Language :: Python :: Implementation :: CPython',
270+
'Programming Language :: Python :: Implementation :: PyPy',
271+
'Programming Language :: Python :: Implementation :: Stackless',
268272
'Topic :: Internet :: WWW/HTTP',
269273
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
270274
'Topic :: Software Development :: Code Generators',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy, py26, py27, py33, py34
2+
envlist = pypy, pypy3, py26, py27, py33, py34, py35
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)