From f5e9da7c8358c4991c1e7a329a9317959d589ccb Mon Sep 17 00:00:00 2001 From: KKlochko Date: Sun, 16 Jul 2023 14:30:29 +0300 Subject: [PATCH] Update the package information and imports. --- CHANGELOG.org | 2 ++ pyproject.toml | 2 +- src/main.py | 8 ++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index 24c13b5..f23f6bb 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -39,3 +39,5 @@ Add the requirements and .gitignore. ** 1.1.3 <2023-07-16> Update the mail information. +** 1.1.4 <2023-07-16> + Update the package information and imports. diff --git a/pyproject.toml b/pyproject.toml index eb45bf3..ce2c19a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ description = "Getting notification from anitube.in.ua." readme = "README.rst" license = { file="COPYING" } -requires-python = ">=3.7" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", diff --git a/src/main.py b/src/main.py index fd3732c..5535e28 100644 --- a/src/main.py +++ b/src/main.py @@ -17,10 +17,10 @@ # along with Anitube Simple Notification. If not, see # # . # ########################################################################## -from db import DataBase -from scraper import Scraper -from notify import Notification -from config import Config +from .db import DataBase +from .scraper import Scraper +from .notify import Notification +from .config import Config from rich.console import Console from rich.progress import track import time