Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 075ad8e

Browse files
Merge pull request #42 from packethost/add-py37
Add py37
2 parents 6658bde + 3085d37 commit 075ad8e

5 files changed

Lines changed: 12 additions & 2 deletions

File tree

.drone.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ matrix:
44
- 3.4
55
- 3.5
66
- 3.6
7+
- 3.7
78

89
pipeline:
910
fmt_and_lint:
10-
image: python:alpine
11+
image: python:3.6-alpine
1112
commands:
1213
- pip install pylama yapf
1314
- yapf -dr packet | (! grep '.')

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,11 @@ python:
66
- "3.6"
77
sudo: false
88

9+
matrix:
10+
include:
11+
- python: 3.7
12+
dist: xenial
13+
sudo: true
14+
915
install: pip install tox
1016
script: tox -e py$(echo "$TRAVIS_PYTHON_VERSION" | sed 's|\.||')

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
### Added
9+
- Support for python3.7
810
### Removed
911
- Support for python3.3
1012
### Changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@
6767
'Programming Language :: Python :: 3.4',
6868
'Programming Language :: Python :: 3.5',
6969
'Programming Language :: Python :: 3.6',
70+
'Programming Language :: Python :: 3.7',
7071
])

tox.ini

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

55
[testenv]

0 commit comments

Comments
 (0)