Skip to content

Commit ae4e1ec

Browse files
authored
Merge pull request #82 from hugovk/rm-3.3
[MRG+1] Drop support for EOL Python 3.3
2 parents 7ed6813 + 6a53f24 commit ae4e1ec

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
python:
33
- '2.7'
4-
- '3.3'
54
- '3.4'
65
- '3.5'
76
- '3.6'

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ extracted as a stand-alone project.
1717
Quick facts:
1818

1919
* Free software: BSD licensed
20-
* Compatible with Python 2.7 and 3.3+
20+
* Compatible with Python 2.7 and 3.4+
2121
* Latest documentation `on Read the Docs <https://cssselect.readthedocs.io/>`_
2222
* Source, issues and pull requests `on GitHub
2323
<https://github.com/scrapy/cssselect>`_

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,14 @@
2929
url='https://github.com/scrapy/cssselect',
3030
license='BSD',
3131
packages=['cssselect'],
32-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
32+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
3333
classifiers=[
3434
'Development Status :: 4 - Beta',
3535
'Intended Audience :: Developers',
3636
'License :: OSI Approved :: BSD License',
3737
'Programming Language :: Python :: 2',
3838
'Programming Language :: Python :: 2.7',
3939
'Programming Language :: Python :: 3',
40-
'Programming Language :: Python :: 3.3',
4140
'Programming Language :: Python :: 3.4',
4241
'Programming Language :: Python :: 3.5',
4342
'Programming Language :: Python :: 3.6',

tox.ini

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

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)