spostato pyinstaller in dev dependencies

This commit is contained in:
2020-10-22 16:59:29 +02:00
parent c37fd42b6a
commit 9fa783603c
2 changed files with 15 additions and 15 deletions

28
SPEx/poetry.lock generated
View File

@@ -1,5 +1,5 @@
[[package]]
category = "main"
category = "dev"
description = "Python graph (network) package"
name = "altgraph"
optional = false
@@ -61,10 +61,10 @@ marker = "sys_platform == \"win32\""
name = "colorama"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
version = "0.4.3"
version = "0.4.4"
[[package]]
category = "main"
category = "dev"
description = "Clean single-source support for Python 3 and 2"
marker = "sys_platform == \"win32\""
name = "future"
@@ -78,7 +78,7 @@ description = "A Python utility / library to sort Python imports."
name = "isort"
optional = false
python-versions = ">=3.6,<4.0"
version = "5.6.3"
version = "5.6.4"
[package.extras]
colors = ["colorama (>=0.4.3,<0.5.0)"]
@@ -94,7 +94,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
version = "1.4.3"
[[package]]
category = "main"
category = "dev"
description = "Mach-O header analysis and editing"
marker = "sys_platform == \"darwin\""
name = "macholib"
@@ -142,7 +142,7 @@ python-versions = "*"
version = "1.18.0"
[[package]]
category = "main"
category = "dev"
description = "Python PE parsing module"
marker = "sys_platform == \"win32\""
name = "pefile"
@@ -181,7 +181,7 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
version = "2.6.0"
[[package]]
category = "main"
category = "dev"
description = "PyInstaller bundles a Python application and all its dependencies into a single package."
name = "pyinstaller"
optional = false
@@ -201,7 +201,7 @@ encryption = ["tinyaes (>=1.0.0)"]
hook_testing = ["pytest (>=2.7.3)", "execnet (>=1.5.0)", "psutil"]
[[package]]
category = "main"
category = "dev"
description = "Community maintained hooks for PyInstaller"
name = "pyinstaller-hooks-contrib"
optional = false
@@ -287,7 +287,7 @@ text-unidecode = ">=1.3"
unidecode = ["Unidecode (>=1.1.1)"]
[[package]]
category = "main"
category = "dev"
description = ""
marker = "sys_platform == \"win32\""
name = "pywin32-ctypes"
@@ -336,7 +336,7 @@ python-versions = "*"
version = "1.12.1"
[metadata]
content-hash = "ecf1dd55941dc1c592b5ba51eae2dc80961547647906fd1e1f1a45846e607cdc"
content-hash = "8935923b357c12f7361a3ef81cf5cc077db8b0e47c574dffd54af31447816036"
lock-version = "1.0"
python-versions = "^3.8"
@@ -361,15 +361,15 @@ autopep8 = [
{file = "autopep8-1.5.4.tar.gz", hash = "sha256:d21d3901cb0da6ebd1e83fc9b0dfbde8b46afc2ede4fe32fbda0c7c6118ca094"},
]
colorama = [
{file = "colorama-0.4.3-py2.py3-none-any.whl", hash = "sha256:7d73d2a99753107a36ac6b455ee49046802e59d9d076ef8e47b61499fa29afff"},
{file = "colorama-0.4.3.tar.gz", hash = "sha256:e96da0d330793e2cb9485e9ddfd918d456036c7149416295932478192f4436a1"},
{file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"},
{file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
]
future = [
{file = "future-0.18.2.tar.gz", hash = "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d"},
]
isort = [
{file = "isort-5.6.3-py3-none-any.whl", hash = "sha256:2c1d044a96c74367ab12188593d134c596747d97aec43b9cdb12eea83b6889d2"},
{file = "isort-5.6.3.tar.gz", hash = "sha256:3820dd92c3214290cda6351f2ae2cedd5170759bc434af600eaad4f7a82a6ade"},
{file = "isort-5.6.4-py3-none-any.whl", hash = "sha256:dcab1d98b469a12a1a624ead220584391648790275560e1a43e54c5dceae65e7"},
{file = "isort-5.6.4.tar.gz", hash = "sha256:dcaeec1b5f0eca77faea2a35ab790b4f3680ff75590bfcb7145986905aab2f58"},
]
lazy-object-proxy = [
{file = "lazy-object-proxy-1.4.3.tar.gz", hash = "sha256:f3900e8a5de27447acbf900b4750b0ddfd7ec1ea7fbaf11dfa911141bc522af0"},

View File

@@ -9,12 +9,12 @@ python = "^3.8"
PyQt5 = ">=5.15.0"
python-slugify = "*"
parse = "*"
pyinstaller = "^4.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pylint = "^2.6.0"
autopep8 = "^1.5.4"
pyinstaller = "^4.0"
[build-system]
requires = ["poetry>=0.12"]