Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #20 from beproud/feature/drop-py36
Browse files Browse the repository at this point in the history
#19 Drop py36
  • Loading branch information
bp-xiao authored Jul 12, 2022
2 parents efae1aa + 1680af1 commit 5b89fb0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# 並列して実行する各ジョブのPythonバージョン
strategy:
matrix:
python-version: ['3.6', '3.9']
python-version: ['3.9']
django-version: ['2.2']

steps:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Requirements
============

* Python (3.6, 3.9)
* Celery (4.1)
* Python (3.9)
* Celery (5.x)
* Django (2.2)

Links
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -17,5 +16,4 @@ commands=python setup.py test
# tox-gh-actionsパッケージの設定
[gh-actions]
python =
3.6: py36
3.9: py39

0 comments on commit 5b89fb0

Please sign in to comment.