From 337453b751d6963c6a7d89c0302e93015f759a89 Mon Sep 17 00:00:00 2001 From: nikitaazanov Date: Fri, 4 Oct 2024 12:59:30 +0700 Subject: [PATCH] Improve versions and files naming --- CONTRIBUTING.rst | 2 +- HISTORY.rst | 4 ++++ {provision => invocations}/__init__.py | 0 {provision => invocations}/ci.py | 0 {provision => invocations}/docs.py | 0 {provision => invocations}/project.py | 0 poetry.lock | 2 +- pyproject.toml | 2 +- tasks.py | 8 ++++---- 9 files changed, 11 insertions(+), 7 deletions(-) rename {provision => invocations}/__init__.py (100%) rename {provision => invocations}/ci.py (100%) rename {provision => invocations}/docs.py (100%) rename {provision => invocations}/project.py (100%) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 3526ded..9993448 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -99,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 3.9, 3.10, 3.11, and for PyPy. Check +3. The pull request should work for Python 3.10, 3.11, and for PyPy. Check github actions status, verify that all checks have been passed Tips diff --git a/HISTORY.rst b/HISTORY.rst index c997ea4..9898f95 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ History ======= +0.6.1 (2024-10-04) +---------- +* Update requirements version and internal naming + 0.6.0 (2024-10-04) ---------- * Extend response of import job api diff --git a/provision/__init__.py b/invocations/__init__.py similarity index 100% rename from provision/__init__.py rename to invocations/__init__.py diff --git a/provision/ci.py b/invocations/ci.py similarity index 100% rename from provision/ci.py rename to invocations/ci.py diff --git a/provision/docs.py b/invocations/docs.py similarity index 100% rename from provision/docs.py rename to invocations/docs.py diff --git a/provision/project.py b/invocations/project.py similarity index 100% rename from provision/project.py rename to invocations/project.py diff --git a/poetry.lock b/poetry.lock index b5d4a91..d2d01db 100644 --- a/poetry.lock +++ b/poetry.lock @@ -5,7 +5,7 @@ name = "alabaster" version = "0.7.16" description = "A light, configurable Sphinx theme" optional = false -python-versions = ">=3.9" +python-versions = ">=3.10" files = [ {file = "alabaster-0.7.16-py3-none-any.whl", hash = "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92"}, {file = "alabaster-0.7.16.tar.gz", hash = "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65"}, diff --git a/pyproject.toml b/pyproject.toml index c2d9498..56e0c57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-import-export-extensions" -version = "0.6.0" +version = "0.6.1" description = "Extend functionality of `django-import-export`" license = "MIT" authors = ["Saritasa "] diff --git a/tasks.py b/tasks.py index 9e490f6..2adf6cc 100644 --- a/tasks.py +++ b/tasks.py @@ -1,12 +1,12 @@ import saritasa_invocations from invoke import Collection -import provision +import invocations ns = Collection( - provision.project, - provision.docs, - provision.ci, + invocations.project, + invocations.docs, + invocations.ci, saritasa_invocations.celery, saritasa_invocations.django, saritasa_invocations.docker,