From 73a2c784aeb45cd963256ed17ae7674a570310d0 Mon Sep 17 00:00:00 2001 From: Josh Yu Date: Mon, 8 Apr 2024 15:23:21 +0800 Subject: [PATCH 1/3] Release 4.0.1.dev3 --- CHANGELOG.rst | 3 +++ djangocms_snippet/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a1056c19..693d97b1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,9 @@ Changelog Unreleased ========== + +4.0.1.dev3 (2024-04-08) +======================= * add support for python 3.10 * add support for django 4.2 * drop support for django < 3.2 diff --git a/djangocms_snippet/__init__.py b/djangocms_snippet/__init__.py index d548be3e..facf1fa3 100644 --- a/djangocms_snippet/__init__.py +++ b/djangocms_snippet/__init__.py @@ -1,3 +1,3 @@ -__version__ = '4.0.1.dev2' +__version__ = '4.0.1.dev3' default_app_config = 'djangocms_snippet.apps.SnippetConfig' From 46f96328f242e593b19dc9035c5999f390cefdef Mon Sep 17 00:00:00 2001 From: Josh Yu Date: Mon, 8 Apr 2024 15:43:53 +0800 Subject: [PATCH 2/3] fix: update pyproject.toml version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3992ef84..36f3fa79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "djangocms-snippet" -version = "4.0.1.dev2" +version = "4.0.1.dev3" authors = [ {name = "Divio AG", email = "info@divio.ch"}, ] From beafa06275ac4d5cdfcd293190a100755c5a7b97 Mon Sep 17 00:00:00 2001 From: Josh Peng Yu Date: Mon, 8 Apr 2024 08:15:22 +0000 Subject: [PATCH 3/3] fix: remove dependencies in setup.py, keep it in pyproect.toml --- pyproject.toml | 1 + setup.py | 7 ------- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 36f3fa79..a5957087 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ readme = "README.rst" requires-python = ">=3.8" dependencies = [ 'django-cms>=4.0', + 'django-treebeard>=4.3', ] classifiers=[ "Development Status :: 5 - Production/Stable", diff --git a/setup.py b/setup.py index de80e82e..07f7378b 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,6 @@ from djangocms_snippet import __version__ # noqa:E402 -REQUIREMENTS = [ - 'django-cms', - 'django-treebeard>=4.3', -] - - CLASSIFIERS = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', @@ -50,7 +44,6 @@ packages=find_packages(), include_package_data=True, zip_safe=False, - install_requires=REQUIREMENTS, classifiers=CLASSIFIERS, test_suite='tests.settings.run', )