Skip to content

Commit 375f0ea

Browse files
committed
changelog and setup for 2.0.0
1 parent c6f0183 commit 375f0ea

4 files changed

Lines changed: 11 additions & 45 deletions

File tree

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Write Your Python Program - CHANGELOG
22

3+
* 2.0.0 (2025-09-24)
4+
* Remove wrappers, only check types at function enter/exit points
5+
* Restructure directory layout
6+
* RUN button now longer copies files to the site-lib directory
37
* 1.3.2 (2025-05-11)
48
* Fix release (version 1.3.1. did no include the latest changes)
59
* 1.3.1 (2025-05-10)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Write Your Python Program!",
44
"description": "A user friendly python environment for beginners",
55
"license": "See license in LICENSE",
6-
"version": "2.0.",
6+
"version": "2.0.0",
77
"publisher": "StefanWehr",
88
"icon": "icon.png",
99
"engines": {

python/setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ def readVersion():
3131
author='Stefan Wehr',
3232
author_email='stefan.wehr@hs-offenburg.de',
3333
url='https://github.com/skogsbaer/write-your-python-program',
34-
package_dir={'wypp': 'src', 'untypy': 'deps/untypy/untypy'},
35-
packages=['wypp'] + find_packages("deps/untypy", exclude=['test', 'test.*']),
34+
package_dir={
35+
'wypp': 'code/wypp',
36+
'typeguard': 'code/typeguard',
37+
'typing_extensions': 'code'
38+
},
39+
packages=['wypp', 'typing_extensions', 'typeguard'],
3640
python_requires='>=3.12.0',
3741
scripts=['wypp']
3842
)

python/setup_new.py

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)