Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1353, #1355] update python 3 #1394

Merged
merged 24 commits into from
Apr 3, 2022
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ca97562
upgrade to python 3 : main script working, now needs to test commands
tomparle Apr 29, 2021
9f730e0
fix file access commands
tomparle Apr 29, 2021
21dcc63
* #5: Update to latest Eclipse JDT Core v3.23 to enable JDK 14 source
tazmaniax Dec 14, 2020
e2ae5a8
fix module commands by upgrading simplejson to latest build
tomparle Apr 30, 2021
ebd8b1b
remove compatibility lib for Python2, not useful anymore
tomparle Apr 30, 2021
0876e36
fix calls to past builtins that are not present in Python3
tomparle Apr 30, 2021
e93cd23
upgraded python tests to Python 3
tomparle Oct 25, 2021
8ca59ac
upgraded yaml lib for python 3 support
tomparle Oct 25, 2021
c13ab61
resolve conflit with current master branch for rebase
tomparle Mar 15, 2022
57e4e7b
Revert "conflict fix after rebase issues"
tomparle Mar 29, 2022
5f4adaa
Revert "remove deprecated libs"
tomparle Mar 29, 2022
66415a1
Revert "resolve conflit with current master branch for rebase"
tomparle Mar 29, 2022
78c8cea
reverted incorrect merge
tomparle Mar 29, 2022
0c72f05
resolved merge conflict
tomparle Mar 29, 2022
ca81a3f
upgrade latest changes from master to python 3 syntax
tomparle Mar 29, 2022
994e5a1
upgrade build file to use python 3 for ant tests on github
tomparle Mar 29, 2022
5d42145
change POpen parameter to be compatible with all 3.x python versions
tomparle Mar 29, 2022
3a4d69a
fixed incorrect lib structure for python tests
tomparle Mar 29, 2022
5bd109a
fix builtins lib import deprecated in python 3
tomparle Mar 29, 2022
b5d8244
[#1355] fix python path for windows
xael-fry Mar 30, 2022
f4abb4d
[#1355]
xael-fry Apr 2, 2022
2f80845
[#1355] remove python 2
xael-fry Apr 2, 2022
d1da5ee
[#1355] test kill play
xael-fry Apr 2, 2022
d99cf34
[#1355] fix ssl config test
xael-fry Apr 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove compatibility lib for Python2, not useful anymore
tomparle committed Mar 29, 2022
commit ebd8b1b42dd703efc9c81a77e6658dfdf35172ba
2 changes: 0 additions & 2 deletions framework/pym/play/commands/autotest.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
from __future__ import print_function
# Command related to execution: auto-test

from future import standard_library
standard_library.install_aliases()
import sys
import os, os.path
import shutil
2 changes: 0 additions & 2 deletions framework/pym/play/commands/base.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
from __future__ import print_function
# Command related to creation and execution: run, new, clean

from future import standard_library
standard_library.install_aliases()
from builtins import input
from builtins import str
import sys
2 changes: 0 additions & 2 deletions framework/pym/play/commands/check.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import range
from builtins import object
2 changes: 0 additions & 2 deletions framework/pym/play/commands/deps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
import os, os.path
import shutil
import urllib.request, urllib.parse, urllib.error, urllib.request, urllib.error, urllib.parse
2 changes: 0 additions & 2 deletions framework/pym/play/commands/evolutions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
import os, os.path
import shutil
import urllib.request, urllib.parse, urllib.error, urllib.request, urllib.error, urllib.parse
2 changes: 0 additions & 2 deletions framework/pym/play/commands/modulesrepo.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from __future__ import print_function
from __future__ import division
from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import input
from builtins import range
2 changes: 0 additions & 2 deletions framework/pym/play/commands/status.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from builtins import str
import os, os.path
import shutil