You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ What's new:
30
30
31
31
- Comments in code of SimPyLC/scene.py adapted to clarify different purpose of axis and pivot, and of passing angle to __init__ versus passing it to __call__
32
32
- Spaces rather than tabs are now used in the sourcecode.
33
-
- Adapted for Python 3.5 (SimPyLC 2.1.2 is last version running with Python 2.7)
33
+
- Adapted for Python 3.6 (SimPyLC 2.1.2 is last version running with Python 2.7)
34
34
- Development status bumped to production / stable.
35
35
- Native.py files replaced by native.cpp files, which are plain C++, hence benefit from syntax highlighting. You'll have to adapt your existing code to this (by merely leaving things out).
36
36
- Code now generated in a separate subdirectory to avoid confusion, especially with native.cpp.
@@ -41,21 +41,22 @@ REMARK: All complete Arduino examples were tested on the Arduino Due, since that
41
41
42
42
Bugs fixed:
43
43
44
-
- __nonzero__ changed to __bool__, as required by the move from Python 2.7 to Python 3.5. The blinkingLight demo will now work again.
44
+
- Type Bool added, needed for Arduino Uno.
45
+
- __nonzero__ changed to __bool__, as required by the move from Python 2.7 to Python 3.6. The blinkingLight demo will now work again.
45
46
- Sidewalks raised above road in arduinoTrafficLights example.
46
47
- Unused circuit group 'Lights' deleted from control in arduinoTrafficLights example.
47
48
48
49
**Bug reports and feature requests are most welcome and will be taken under serious consideration on a non-committal basis**
49
50
50
51
Requirements for Windows:
51
52
52
-
1. Install WinPython 3.5, e.g. from https://winpython.github.io
53
+
1. Install WinPython 3.6, e.g. from https://winpython.github.io
53
54
2. (Optional) Copy SimPyLC\\SimPyLC\\QuartzMS.TTF to C:\\Windows\\Fonts
54
55
3. (Optional) You can may also add SimPyLC\\SimPyLC to your PYTHONPATH
Copy file name to clipboardExpand all lines: setup.py
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,11 @@ def read (*paths):
8
8
9
9
setup (
10
10
name='SimPyLC',
11
-
version='3.5.5',
11
+
version='3.6.1',
12
12
description='SimPyLC PLC simulator, after its C++ big brother that has controlled industrial installations for more than 20 years now. ARDUINO CODE GENERATION ADDED!',
0 commit comments