arq is right now not compatible with aioredis 2.0.0 So pinning the aioredis to 1.3.1 for the time being

This commit is contained in:
Amritanshu Agrawal 2021-08-10 11:29:53 +05:30
parent beae4a07c6
commit 1515c33e7b
6 changed files with 8 additions and 6 deletions

View File

@ -1 +1 @@
__version__ = "9.6.0"
__version__ = "9.7.0"

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "barker"
version = "9.6.0"
version = "9.7.0"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]
@ -21,6 +21,7 @@ pydantic = {extras = ["dotenv"], version = "^1.8.2"}
starlette = "^0.14.2"
arq = "^0.20"
aiohttp = "^3.7.4"
aioredis = "^1.3.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.1"

View File

@ -1,6 +1,6 @@
{
"name": "bookie",
"version": "9.6.0",
"version": "9.7.0",
"scripts": {
"ng": "ng",
"start": "ng serve",

View File

@ -1,5 +1,5 @@
export const environment = {
production: true,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '9.6.0',
version: '9.7.0',
};

View File

@ -5,7 +5,7 @@
export const environment = {
production: false,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '9.6.0',
version: '9.7.0',
};
/*

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "frank"
version = "9.6.0"
version = "9.7.0"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]
@ -9,6 +9,7 @@ python = "^3.8"
pydantic = {extras = ["dotenv"], version = "^1.8.2"}
arq = "^0.20"
aiohttp = "^3.7.4"
aioredis = "^1.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]