diff --git a/.travis.yml b/.travis.yml index fd0f356e..8f64b23e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: python cache: pip python: - - 3.4 - 3.5 - 3.6 + - 3.7 - pypy3 - nightly diff --git a/CHANGES.txt b/CHANGES.txt index f26b94ed..b2c19b22 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,6 +5,8 @@ Changes for crash Unreleased ========== +- Dropped support for Python 3.4 and added official support for Python 3.7 + 2018/10/04 0.24.2 ================= diff --git a/README.rst b/README.rst index 03c2655d..7ea4f28d 100644 --- a/README.rst +++ b/README.rst @@ -50,15 +50,15 @@ To update, run:: $ pip install -U crash -If you are not using Python version 3.4 or above, recent version of `pip`_ will -only install version 0.23.x. This is because newer versions of this package are -not compatible with Python 2.7 or 3.3 and below. +If you are not using Python version 3.5 or above, recent version of `pip`_ will +install an earlier version of Crash. This is because newer versions of this +package are not compatible with Python 2.7 or 3.4 and below. Standalone ---------- Crash is also available as a standalone executable that includes all the -necessary dependencies, and can be run as long as Python (>= 3.4) is available +necessary dependencies, and can be run as long as Python (>= 3.5) is available on your system. First, download the executable file:: diff --git a/setup.py b/setup.py index f2d4e9d5..da775a7a 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ def read(path): ], argcompletion=['argcomplete'] ), - python_requires='>=3.4', + python_requires='>=3.5', install_requires=requirements, package_data={'': ['*.txt']}, classifiers=[ @@ -87,9 +87,9 @@ def read(path): 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Database' diff --git a/tox.ini b/tox.ini index 1d17180a..62a88ee9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = pypy3, py34, py35, py36 +envlist = pypy3, py35, py36, py37 [testenv] usedevelop = True