Skip to content

Commit 7464ab3

Browse files
committed
Drop support for python 3.4, add support for python 3.8
1 parent 7f85795 commit 7464ab3

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
### Added
10+
- Add support for Python 3.8
11+
912
### Fixed
1013
- Because of a breaking change in `cmd2`, we now require `cmd2>=0.9.12`
1114

15+
### Removed
16+
- Drop support for Python 3.4, which was end-of-life on 2019-03-18
17+
1218

1319
## 1.0.1 (2018-07-22)
1420

build-pyenvs.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# version numbers are: major.minor.patch
99
#
1010
# this script will delete and recreate existing virtualenvs named
11-
# cmd2-3.7, etc. It will also create a .python-version
11+
# cmd2-3.8, etc. It will also create a .python-version
1212
#
1313
# Prerequisites:
1414
# - *nix-ish environment like macOS or Linux
@@ -23,7 +23,7 @@
2323
# virtualenvs will be added to '.python-version'. Feel free to modify
2424
# this list, but note that this script intentionally won't install
2525
# dev, rc, or beta python releases
26-
declare -a pythons=("3.7" "3.6" "3.5" "3.4")
26+
declare -a pythons=("3.8" "3.7" "3.6" "3.5")
2727

2828
# function to find the latest patch of a minor version of python
2929
function find_latest_version {

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# in travis or appveyor, the tox environment is selected by the CI tool
66

77
[tox]
8-
envlist = py{34,35,36,37}
8+
envlist = py{35,36,37,38}
99

1010
[testenv]
1111
passenv = TOXENV CI TRAVIS TRAVIS_* APPVEYOR*

0 commit comments

Comments
 (0)