Skip to content

Commit 899a94c

Browse files
committed
prepare for 0.11
1 parent bdf6f7a commit 899a94c

File tree

5 files changed

+33
-20
lines changed

5 files changed

+33
-20
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ matrix:
33
include:
44
- os: linux
55
sudo: required
6-
python: 3.4
6+
python: 3.6
77
- os: linux
88
sudo: required
9-
python: 3.5
9+
python: 3.6
1010
- os: linux
1111
sudo: required
12-
python: 3.6
12+
python: 3.7
13+
- os: linux
14+
sudo: required
15+
python: 3.8
1316
- os: linux
1417
sudo: required
1518
python: 2.7

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
CHANGES
22
=======
33

4+
0.11
5+
----
6+
7+
* Update read_multi.py (#132)
8+
* Added fixes to snap7/client.py read_area function to allow for Counter and Timer Reads (#121)
9+
* Post to a public docker repository? (#119)
10+
* Implementation of Cli_SetDateTime, Cli_GetDateTime enhancement (#114)
11+
12+
413
0.10
514
----
615

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is a ctypes based python wrapper for snap7. Snap7 is an open source,
55
32/64 bit, multi-platform Ethernet communication suite for interfacing natively
66
with Siemens S7 PLCs.
77

8-
python-snap7 support Python 2.7 and 3.4+, Windows, Linux and OS X.
8+
python-snap7 is tested with Python 2.7 and 3.5+, on Windows, Linux and OS X.
99

1010
.. image:: https://travis-ci.org/gijzelaerr/python-snap7.png?branch=master
1111
:target: https://travis-ci.org/gijzelaerr/python-snap7
@@ -30,7 +30,7 @@ credits
3030
- Gijs Molenaar (gijs at pythonic dot nl)
3131
- Stephan Preeker (stephan at preeker dot net)
3232

33-
Both authors are available for contracting to improve python-snap7. Please contact us at the email addres above for inquiries.
33+
Both authors are available for contracting to improve python-snap7. Please contact us at the email address above for inquiries.
3434

3535

3636
Special thanks to

setup.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
__version__ = "0.10"
4+
__version__ = "0.11"
55

66

77
def read(fname):
@@ -19,17 +19,18 @@ def read(fname):
1919
long_description=read('README.rst'),
2020
scripts=['snap7/bin/snap7-server.py'],
2121
classifiers=[
22-
"Development Status :: 5 - Production/Stable",
23-
"Environment :: Console",
24-
"Topic :: System :: Hardware",
25-
"Intended Audience :: Developers",
26-
"Intended Audience :: Manufacturing",
27-
"License :: OSI Approved :: MIT License",
28-
"Operating System :: POSIX",
29-
"Programming Language :: Python :: 2.7",
30-
"Programming Language :: Python :: 3.4",
31-
"Programming Language :: Python :: 3.5",
32-
"Programming Language :: Python :: 3.6",
33-
"Programming Language :: Python :: 3.7",
22+
"Development Status :: 5 - Production/Stable",
23+
"Environment :: Console",
24+
"Topic :: System :: Hardware",
25+
"Intended Audience :: Developers",
26+
"Intended Audience :: Manufacturing",
27+
"License :: OSI Approved :: MIT License",
28+
"Operating System :: POSIX",
29+
"Programming Language :: Python :: 2.7",
30+
"Programming Language :: Python :: 3.4",
31+
"Programming Language :: Python :: 3.5",
32+
"Programming Language :: Python :: 3.6",
33+
"Programming Language :: Python :: 3.7",
34+
"Programming Language :: Python :: 3.8",
3435
]
35-
)
36+
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py34, py35, py36
7+
envlist = py27, py34, py35, py36, py37,py38
88

99
[testenv]
1010
commands = nosetests

0 commit comments

Comments
 (0)