Skip to content

Commit 4eaaf15

Browse files
author
Dominik Gresch
committed
Drop support for Python3.5
1 parent fd388c0 commit 4eaaf15

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
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
cache: pip
33
python:
4-
- "3.5"
54
- "3.6"
65
- "3.7"
76
- "3.8"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from setuptools import setup, find_packages
55

66
import sys
7-
if sys.version_info < (3, 5):
8-
raise 'must use Python version 3.5 or higher'
7+
if sys.version_info < (3, 6):
8+
raise 'must use Python version 3.6 or higher'
99

1010
README = r"""Z2Pack is a tool that computes topological invariants and illustrates non-trivial features of Berry curvature. It works as a post-processing tool with all major first-principles codes (z2pack.fp), as well as with tight-binding models (z2pack.tb) and explicit Hamiltonian matrices -- such as the ones obtained from a k.p model (z2pack.hm).
1111
@@ -45,12 +45,12 @@
4545
'fsc.iohelper'
4646
],
4747
extras_require=EXTRAS,
48+
python_requires=">=3.6",
4849
long_description=README,
4950
classifiers=[
5051
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
5152
'Natural Language :: English', 'Operating System :: Unix',
5253
'Programming Language :: Python :: 3',
53-
'Programming Language :: Python :: 3.5',
5454
'Programming Language :: Python :: 3.6',
5555
'Programming Language :: Python :: 3.7',
5656
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)