Skip to content

Commit 3671da1

Browse files
authored
Merge pull request #471 from kbandla/fix-#453
release 1.9.3 (#453)
2 parents bc0fc98 + a1e2ac0 commit 3671da1

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ matrix:
1212
env: TOXENV=py36
1313
- python: "3.7"
1414
env: TOXENV=py37,coveralls,docs
15+
- python: "3.8"
16+
env: TOXENV=py38
1517
- python: "pypy3.5"
1618
env: TOXENV=pypy
1719
before_install:
@@ -28,4 +30,3 @@ notifications:
2830
email:
2931
on_success: never
3032
on_failure: always
31-

AUTHORS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ Tim Yardley <yardley@gmail.com>
6060
DHCP definitions
6161

6262
obormot <oscar.ibatullin@gmail.com>
63-
pcapng module, Packet repr improvements
64-
63+
pcapng module, Ethernet, core improvements
64+
6565
Kyle Keppler <kyle.keppler@gmail.com>
6666
Python 3 port
6767

dpkt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__author_email__ = 'dugsong@monkey.org'
88
__license__ = 'BSD-3-Clause'
99
__url__ = 'https://github.com/kbandla/dpkt'
10-
__version__ = '1.9.2'
10+
__version__ = '1.9.3'
1111

1212

1313

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import os
21
import sys
32

43
try:
5-
from setuptools import setup, Command
4+
from setuptools import setup
65
except ImportError:
7-
from distutils.core import setup, Command
6+
from distutils.core import setup
87

98
package_name = 'dpkt'
109
description = 'fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols'
@@ -42,6 +41,7 @@
4241
'Programming Language :: Python :: 3.5',
4342
'Programming Language :: Python :: 3.6',
4443
'Programming Language :: Python :: 3.7',
44+
'Programming Language :: Python :: 3.8',
4545
'Programming Language :: Python :: Implementation :: CPython',
4646
'Programming Language :: Python :: Implementation :: PyPy',
4747
]

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[tox]
2-
envlist = py27, py35, py36, py37, docs
2+
envlist = py27, py35, py36, py37, py38, docs
33

44
[testenv]
55
install_command =
66
pip install {opts} {packages}
7-
# FIXME: remove version pinning when py26 support is no longer needed
87
deps =
9-
setuptools==36.8.0
10-
wheel==0.29
8+
setuptools
9+
wheel
1110
pytest==3.2.5
1211
coverage
1312
pytest-cov==2.5.1

0 commit comments

Comments
 (0)