From 1680af16544edf2d0c4fdd10cc3ddea256aa9445 Mon Sep 17 00:00:00 2001 From: xiao Date: Tue, 12 Jul 2022 10:38:38 +0900 Subject: [PATCH] #19 Drop py36 --- .github/workflows/tests.yml | 2 +- README.rst | 4 ++-- setup.py | 3 +-- tox.ini | 4 +--- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a8ae131..cfb6f08 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: # 並列して実行する各ジョブのPythonバージョン strategy: matrix: - python-version: ['3.6', '3.9'] + python-version: ['3.9'] django-version: ['2.2'] steps: diff --git a/README.rst b/README.rst index 39e8532..e5bad34 100644 --- a/README.rst +++ b/README.rst @@ -5,8 +5,8 @@ Requirements ============ -* Python (3.6, 3.9) -* Celery (4.1) +* Python (3.9) +* Celery (5.x) * Django (2.2) Links diff --git a/setup.py b/setup.py index 4a076eb..202a9eb 100644 --- a/setup.py +++ b/setup.py @@ -48,13 +48,12 @@ def read_file(filename): author='BeProud Inc.', author_email='project@beproud.jp', url='https://github.com/beproud/bpmailer/', - python_requires='>=3.6', + python_requires='>=3.9', classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.9', 'Framework :: Django', 'Framework :: Django :: 2.2', diff --git a/tox.ini b/tox.ini index 1681bb0..e140b15 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ # Requires tox > 1.8 [tox] -envlist = py{36,39}-django22 +envlist = py39-django22 [testenv] basepython = - py36: python3.6 py39: python3.9 deps = six @@ -17,5 +16,4 @@ commands=python setup.py test # tox-gh-actionsパッケージの設定 [gh-actions] python = - 3.6: py36 3.9: py39