Skip to content

Commit cc8a411

Browse files
committed
Add support for 3.8, drop support for 3.4
1 parent 9b28b5b commit cc8a411

3 files changed

Lines changed: 14 additions & 8 deletions

File tree

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: python
2+
dist: bionic
23
install:
34
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; fi
45
script:
@@ -11,9 +12,6 @@ jobs:
1112
- stage: test
1213
python: 2.7
1314
dist: trusty
14-
- stage: test
15-
python: 3.4
16-
dist: trusty
1715
- stage: test
1816
python: 3.5
1917
dist: trusty
@@ -22,4 +20,5 @@ jobs:
2220
dist: trusty
2321
- stage: test
2422
python: 3.7
25-
dist: xenial
23+
- stage: test
24+
python: 3.8

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
News in asserts 0.10.0
2+
======================
3+
4+
API-Incompatible Changes
5+
------------------------
6+
7+
* Drop support for Python 3.4.
8+
19
News in asserts 0.9.1
210
=====================
311

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@ def read(fname):
1010

1111
setup(
1212
name="asserts",
13-
version="0.9.1",
13+
version="0.10.0",
1414
description="Stand-alone Assertions",
1515
long_description=read("README.rst"),
1616
author="Sebastian Rittau",
1717
author_email="srittau@rittau.biz",
1818
url="https://github.com/srittau/python-asserts",
1919
packages=["asserts"],
2020
package_data={"asserts": ["py.typed", "*.pyi"]},
21-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
22-
tests_require=["mypy >= 0.670"],
21+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
2322
license="MIT",
2423
classifiers=[
2524
"Development Status :: 3 - Alpha",
@@ -28,10 +27,10 @@ def read(fname):
2827
"Programming Language :: Python :: 2",
2928
"Programming Language :: Python :: 2.7",
3029
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.4",
3230
"Programming Language :: Python :: 3.5",
3331
"Programming Language :: Python :: 3.6",
3432
"Programming Language :: Python :: 3.7",
33+
"Programming Language :: Python :: 3.8",
3534
"Topic :: Software Development :: Quality Assurance",
3635
"Topic :: Software Development :: Testing",
3736
],

0 commit comments

Comments
 (0)