From 7cf56e7f0311d8f82ed0e30114092b27b62ce914 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 17:09:01 +0000 Subject: [PATCH 1/2] Bump fastapi from 0.101.0 to 0.109.1 Bumps [fastapi](https://github.com/tiangolo/fastapi) from 0.101.0 to 0.109.1. - [Release notes](https://github.com/tiangolo/fastapi/releases) - [Commits](https://github.com/tiangolo/fastapi/compare/0.101.0...0.109.1) --- updated-dependencies: - dependency-name: fastapi dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 76b08b6..4cbf9bb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ annotated-types==0.5.0 anyio==3.7.1 click==8.1.6 -fastapi==0.101.0 +fastapi==0.109.1 h11==0.14.0 idna==3.4 numpy==1.25.2 From 253f6375fbcae7208c57ddf5a57881d8d2b41ea6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 17:09:14 +0000 Subject: [PATCH 2/2] [pre-commit.ci] Auto fixes from pre-commit.com hooks --- setup.py | 1 + src/aidapp/coordinates.py | 1 + tests/test_main_aidapp.py | 1 + 3 files changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 6e07519..5b1691b 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ PyScaffold helps you to put up the scaffold of your new Python project. Learn more under: https://pyscaffold.org/ """ + from setuptools import setup if __name__ == "__main__": diff --git a/src/aidapp/coordinates.py b/src/aidapp/coordinates.py index 7ebb428..043ba30 100644 --- a/src/aidapp/coordinates.py +++ b/src/aidapp/coordinates.py @@ -1,4 +1,5 @@ """Coordinates module.""" + from numpy import absolute, array, column_stack, linspace, polyfit from shapely.geometry.linestring import LineString diff --git a/tests/test_main_aidapp.py b/tests/test_main_aidapp.py index 0d92fc3..2746fb4 100644 --- a/tests/test_main_aidapp.py +++ b/tests/test_main_aidapp.py @@ -1,4 +1,5 @@ """Test the core functionality of AIDApp.""" + import sys from collections import namedtuple