1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00

Bugfix: psycopg2-binary = "<2.9"

pyinventroy extra is "postgres-binary" and not "psycopg2-binary" ;)
This commit is contained in:
JensDiemer 2021-09-16 08:39:53 +02:00
parent 0810c1ac61
commit ae1f3cdcf5
4 changed files with 6 additions and 9 deletions

View file

@ -150,7 +150,7 @@ pillow==8.3.2; python_version >= "3.7" and python_full_version < "4.0.0" \
pprintpp==0.4.0; python_version >= "3.7" and python_full_version < "4.0.0" \
--hash=sha256:b6b4dcdd0c0c0d75e4d7b2f21a9e933e5b2ce62b26e1a54537f9651ae5a5c01d \
--hash=sha256:ea826108e2c7f49dc6d66c752973c3fc9749142a798d6b254e1e301cfdbc6403
psycopg2-binary==2.8.6; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0") \
psycopg2-binary==2.8.6; python_version >= "3.7" and python_full_version < "3.0.0" or python_version >= "3.7" and python_full_version < "4.0.0" and python_full_version >= "3.4.0" \
--hash=sha256:11b9c0ebce097180129e422379b824ae21c8f2a6596b159c7659e2e5a00e1aa0 \
--hash=sha256:d14b140a4439d816e3b1229a4a525df917d6ea22a0771a2a78332273fd9528a4 \
--hash=sha256:1fabed9ea2acc4efe4671b92c669a213db744d2af8a9fc5d69a8e9bc14b7a9db \

View file

@ -5,7 +5,7 @@
"description": {
"en": "Web based management to catalog things including state and location etc."
},
"version": "0.9.4~ynh1",
"version": "0.9.4~ynh2",
"url": "https://github.com/jedie/PyInventory",
"license": "GPL-3.0",
"maintainer": {

3
poetry.lock generated
View file

@ -697,6 +697,7 @@ django-tagulous = "*"
django-tools = ">=0.48.2"
gunicorn = "*"
pillow = "*"
psycopg2-binary = {version = "<2.9", optional = true, markers = "extra == \"postgres-binary\""}
requests = "*"
[package.extras]
@ -1024,7 +1025,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes
[metadata]
lock-version = "1.1"
python-versions = ">=3.7,<4.0.0"
content-hash = "b7113873cfea719410cc58407cba6295bd81ccb31faf5a70fdb072be4214bbb5"
content-hash = "b22afc1e49bd11c7d602fddb4c628674c45040ac3017db73ed7662786d681fcd"
[metadata.files]
astor = [

View file

@ -1,20 +1,16 @@
[tool.poetry]
name = "pyinventory_ynh"
version = "0.9.4~ynh1"
version = "0.9.4~ynh2"
description = "Test pyinventory_ynh via local_test.py"
authors = ["JensDiemer <git@jensdiemer.de>"]
license = "GPL"
[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
pyinventory = {version = "*", extras = ["psycopg2-binary"]}
pyinventory = {version = "*", extras = ["postgres-binary"]}
# Note: "ynh" extras will install gunicorn, psycopg2, django-redis and django-axes
django_yunohost_integration = {version = ">=v0.2.0", extras = ["ynh"]}
# TODO: Update psycopg2 after PyInventory updates Django >2.2 update
# See: https://github.com/psycopg/psycopg2/issues/1293
psycopg2-binary = "<2.9"
[tool.poetry.dev-dependencies]
bx_py_utils = "*"
tox = "*"