-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from pvarki/apparent_race_condition
Deps update, improved logging
- Loading branch information
Showing
27 changed files
with
1,920 additions
and
1,491 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,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 1.4.0 | ||
current_version = 1.4.1 | ||
commit = False | ||
tag = False | ||
|
||
|
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
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
[tool.poetry] | ||
name = "takrmapi" | ||
version = "1.4.0" | ||
version = "1.4.1" | ||
description = "RASENMAEHER integration API for TAK server" | ||
authors = ["Eero af Heurlin <[email protected]>", "Ari Karhunen <[email protected]>"] | ||
homepage = "https://github.com/pvarki/python-tak-rmapi" | ||
|
@@ -61,23 +61,23 @@ branch = true | |
[tool.poetry.dependencies] | ||
python = ">=3.10,<4.0" | ||
libadvian = "^1.4" | ||
libpvarki = { git="https://github.com/pvarki/python-libpvarki.git", tag="1.9.0" } | ||
libpvarki = { git="https://github.com/pvarki/python-libpvarki.git", tag="1.9.1" } | ||
fastapi = ">=0.89,<1.0,!=0.99.0" # caret behaviour on 0.x is to lock to 0.x.* | ||
jinja2 = "^3.1" | ||
uvicorn = {version = "^0.20", extras = ["standard"]} | ||
gunicorn = "^20.1" | ||
uvicorn = {version = ">=0.30,<1.0", extras = ["standard"]} | ||
gunicorn = "^23.0" | ||
filelock = "^3.12" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.1" | ||
coverage = "^6.3" | ||
pytest-cov = "^3.0" | ||
pylint = "^2.13" | ||
black = "^22.3" | ||
pytest = "^8.0" | ||
coverage = "^7.4" | ||
pytest-cov = "^4.1" | ||
pylint = "^3.0" | ||
black = "^24.1" | ||
bandit = "^1.7" | ||
mypy = "^1.5" | ||
pre-commit = "^2.17" | ||
pytest-asyncio = "^0.18" | ||
mypy = "^1.8" | ||
pre-commit = "^3.6" | ||
pytest-asyncio = ">=0.21,<1.0" # caret behaviour on 0.x is to lock to 0.x.* | ||
bump2version = "^1.0" | ||
detect-secrets = "^1.2" | ||
httpx = ">=0.23,<1.0" # caret behaviour on 0.x is to lock to 0.x.* | ||
|
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,2 +1,3 @@ | ||
""" RASENMAEHER integration API for TAK server """ | ||
__version__ = "1.4.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly | ||
|
||
__version__ = "1.4.1" # NOTE Use `bump2version --config-file patch` to bump versions correctly |
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,4 +1,5 @@ | ||
"""Api endpoints""" | ||
|
||
from fastapi.routing import APIRouter | ||
|
||
from .usercrud import router as usercrud_router | ||
|
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,4 +1,5 @@ | ||
"""Endpoints for information for the admin""" | ||
|
||
import logging | ||
|
||
from fastapi import APIRouter, Depends | ||
|
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
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,4 +1,5 @@ | ||
"""Descriptions API""" | ||
|
||
from typing import Optional | ||
import logging | ||
|
||
|
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,4 +1,5 @@ | ||
"""Endpoints for information for the admin""" | ||
|
||
from typing import Optional | ||
import logging | ||
import os | ||
|
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,4 +1,5 @@ | ||
"""Instructions endpoints""" | ||
|
||
from typing import Dict | ||
import logging | ||
|
||
|
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
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
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
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,4 +1,5 @@ | ||
"""CLI entrypoints for product integration api""" | ||
|
||
import asyncio | ||
import logging | ||
import json | ||
|
Oops, something went wrong.