Skip to content

Commit

Permalink
prepare for 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Apr 16, 2020
1 parent bdf6f7a commit 899a94c
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 20 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ matrix:
include:
- os: linux
sudo: required
python: 3.4
python: 3.6
- os: linux
sudo: required
python: 3.5
python: 3.6
- os: linux
sudo: required
python: 3.6
python: 3.7
- os: linux
sudo: required
python: 3.8
- os: linux
sudo: required
python: 2.7
Expand Down
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
CHANGES
=======

0.11
----

* Update read_multi.py (#132)
* Added fixes to snap7/client.py read_area function to allow for Counter and Timer Reads (#121)
* Post to a public docker repository? (#119)
* Implementation of Cli_SetDateTime, Cli_GetDateTime enhancement (#114)


0.10
----

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This is a ctypes based python wrapper for snap7. Snap7 is an open source,
32/64 bit, multi-platform Ethernet communication suite for interfacing natively
with Siemens S7 PLCs.

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

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

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


Special thanks to
Expand Down
29 changes: 15 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from setuptools import setup, find_packages

__version__ = "0.10"
__version__ = "0.11"


def read(fname):
Expand All @@ -19,17 +19,18 @@ def read(fname):
long_description=read('README.rst'),
scripts=['snap7/bin/snap7-server.py'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: System :: Hardware",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: System :: Hardware",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
)
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py34, py35, py36
envlist = py27, py34, py35, py36, py37,py38

[testenv]
commands = nosetests
Expand Down

0 comments on commit 899a94c

Please sign in to comment.