Skip to content

Commit c5c04c0

Browse files
committed
TST: stop testing with Python 3.4
1 parent 76063c9 commit c5c04c0

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
@@ -5,7 +5,6 @@ dist: trusty
55
language: python
66

77
python:
8-
- "3.4"
98
- "3.5"
109
- "3.6"
1110

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ magics in Jupyter notebooks.
1414
pip install jupyter_spaces
1515
```
1616

17-
`jupyter_spaces` supports Python versions `3.4`, `3.5`, `3.6` and `3.7`.
17+
`jupyter_spaces` supports Python versions `3.5`, `3.6` and `3.7`.
1818

1919
## Usage
2020

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
'License :: OSI Approved :: MIT License',
1717
'Operating System :: OS Independent',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.4',
2019
'Programming Language :: Python :: 3.5',
2120
'Programming Language :: Python :: 3.6',
2221
'Programming Language :: Python :: 3.7',
@@ -44,5 +43,5 @@
4443
long_description_content_type='text/markdown',
4544
packages=find_packages(exclude=['tests']),
4645
install_requires=REQUIREMENTS,
47-
python_requires='~=3.4',
46+
python_requires='~=3.5',
4847
)

tox.ini

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

44
[testenv]
55
deps = -rdev-requirements.txt

0 commit comments

Comments
 (0)