-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create new crypto trial based on Python 3.10
- Loading branch information
Showing
8 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"app_name": "Hello World", | ||
"app_version": "0.5.2", | ||
"app_version": "0.5.4", | ||
"description": "Say hello to the given name.", | ||
"authors": [ | ||
"Likianta <[email protected]>" | ||
|
@@ -25,9 +25,9 @@ | |
"module_paths": [], | ||
"module_paths_scheme": "translate", | ||
"venv": { | ||
"enable_venv": false, | ||
"python_version": "3.9", | ||
"mode": "source_venv", | ||
"enable_venv": true, | ||
"python_version": "3.10", | ||
"mode": "depsland", | ||
"options": { | ||
"depsland": { | ||
"venv_name": "{app_name_lower}_venv", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
from .main import full_build | ||
from .main import min_build | ||
|
||
__version__ = '4.0.0' | ||
__version__ = '4.0.1' |
19 changes: 19 additions & 0 deletions
19
...aller/compilers/accessory/pyportable_crypto_trial_python310/pyportable_crypto/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import sys | ||
|
||
current_pyversion = "python{}{}".format( | ||
sys.version_info.major, sys.version_info.minor | ||
) | ||
target_pyversion = "python310" | ||
if current_pyversion != target_pyversion: | ||
raise Exception( | ||
"Python interpreter version doesn't matched!", | ||
"Required: {}, got {} ({})".format( | ||
target_pyversion, current_pyversion, sys.executable | ||
) | ||
) | ||
|
||
__version__ = "0.2.1-trial" | ||
|
||
from .inject import inject | ||
from .inject import encrypt_data | ||
|
1 change: 1 addition & 0 deletions
1
...compilers/accessory/pyportable_crypto_trial_python310/pyportable_crypto/__pyversion__.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python310 |
Binary file added
BIN
+346 KB
...taller/compilers/accessory/pyportable_crypto_trial_python310/pyportable_crypto/inject.pyd
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...staller/compilers/accessory/pyportable_crypto_trial_python38/pyportable_crypto/inject.pyd
Binary file not shown.
Binary file modified
BIN
-11.5 KB
(97%)
...staller/compilers/accessory/pyportable_crypto_trial_python39/pyportable_crypto/inject.pyd
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[tool.poetry] | ||
name = "pyportable-installer" | ||
version = "4.0.0" | ||
version = "4.0.1" | ||
description = "Build and distribute portable Python application by all-in-one configuration file." | ||
authors = ["Likianta <[email protected]>"] | ||
license = "MIT" | ||
|