From 71c837d931b87d29066dad0a8361fef2bc02f24e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Ma=CC=88der?= Date: Tue, 11 Mar 2025 15:41:16 +0100 Subject: [PATCH] update dates in the source files --- src/operators.py | 6 +++--- src/pyproject.toml | 4 ++-- src/requirements.txt | 4 ---- 3 files changed, 5 insertions(+), 9 deletions(-) delete mode 100644 src/requirements.txt diff --git a/src/operators.py b/src/operators.py index 8458b3a..574e9fe 100644 --- a/src/operators.py +++ b/src/operators.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright 2024, School of Engineering and Architecture of Fribourg +# Copyright 2025, School of Engineering and Architecture of Fribourg # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,8 +16,8 @@ # limitations under the License. __author__ = 'Michael Mader' -__date__ = "2023-03-12" -__version__ = "0.2" +__date__ = "2025-03-11" +__version__ = "0.3" __email__ = "michael.maeder@hefr.ch" diff --git a/src/pyproject.toml b/src/pyproject.toml index 3887694..2dc3770 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "flask-api-calculator-demo" -version = "0.1.0" +version = "0.1.1" description = "Default template for PDM package" authors = [ {name = "Michael Mäder", email = "michael.maeder@hefr.ch"}, @@ -22,4 +22,4 @@ distribution = false [tool.pdm.scripts] flask.cmd = "flask run -p 5000 --debug" flask.env = {FLASK_ENV = "development"} -shell.cmd = "zsh" \ No newline at end of file +shell.cmd = "sh" \ No newline at end of file diff --git a/src/requirements.txt b/src/requirements.txt deleted file mode 100644 index 8840335..0000000 --- a/src/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -Flask -flask-wtf -pytest -pytest-cov