From 170492a5c255478aeffc0cf72b01bf573cd2564e Mon Sep 17 00:00:00 2001 From: proDream Date: Fri, 18 Jul 2025 16:57:50 +0400 Subject: [PATCH] =?UTF-8?q?chore:=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20Poetry=20=D0=B4=D0=BE=20=D0=B0=D0=BA?= =?UTF-8?q?=D1=82=D1=83=D0=B0=D0=BB=D1=8C=D0=BD=D0=BE=D0=B9=20=D0=B2=D0=B5?= =?UTF-8?q?=D1=80=D1=81=D0=B8=D0=B8=20(2.1.3)=20=D0=B8=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BA=D0=B0=20=D1=81=D1=82=D1=80=D1=83=D0=BA=D1=82?= =?UTF-8?q?=D1=83=D1=80=D1=8B=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/lint.yaml | 2 +- .github/workflows/lint.yaml | 2 +- {lkeep => src/lkeep}/__init__.py | 0 {lkeep => src/lkeep}/apps/auth/__init__.py | 0 {lkeep => src/lkeep}/core/core_dependency/__init__.py | 0 {lkeep => src/lkeep}/database/__init__.py | 0 {lkeep => src/lkeep}/database/mixins/__init__.py | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {lkeep => src/lkeep}/__init__.py (100%) rename {lkeep => src/lkeep}/apps/auth/__init__.py (100%) rename {lkeep => src/lkeep}/core/core_dependency/__init__.py (100%) rename {lkeep => src/lkeep}/database/__init__.py (100%) rename {lkeep => src/lkeep}/database/mixins/__init__.py (100%) diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml index bfa598a..362cf93 100644 --- a/.gitea/workflows/lint.yaml +++ b/.gitea/workflows/lint.yaml @@ -36,7 +36,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install poetry==2.0.0 + pip install poetry==2.1.3 poetry install poetry run pre-commit install diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index da3a151..f55ab47 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install poetry==2.0.0 + pip install poetry==2.1.3 poetry install poetry run pre-commit install diff --git a/lkeep/__init__.py b/src/lkeep/__init__.py similarity index 100% rename from lkeep/__init__.py rename to src/lkeep/__init__.py diff --git a/lkeep/apps/auth/__init__.py b/src/lkeep/apps/auth/__init__.py similarity index 100% rename from lkeep/apps/auth/__init__.py rename to src/lkeep/apps/auth/__init__.py diff --git a/lkeep/core/core_dependency/__init__.py b/src/lkeep/core/core_dependency/__init__.py similarity index 100% rename from lkeep/core/core_dependency/__init__.py rename to src/lkeep/core/core_dependency/__init__.py diff --git a/lkeep/database/__init__.py b/src/lkeep/database/__init__.py similarity index 100% rename from lkeep/database/__init__.py rename to src/lkeep/database/__init__.py diff --git a/lkeep/database/mixins/__init__.py b/src/lkeep/database/mixins/__init__.py similarity index 100% rename from lkeep/database/mixins/__init__.py rename to src/lkeep/database/mixins/__init__.py