-
Notifications
You must be signed in to change notification settings - Fork 2
暗黙的namespace package(PEP 420)に変更し、Python 3.13-3.14/Django 5.2をサポート #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,28 +1,31 @@ | ||
| [build-system] | ||
| requires = ["setuptools>=61.0.0", "wheel"] | ||
| requires = ["setuptools>=77.0.3", "wheel"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MEMO: バージョン情報を更新 |
||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "bpnotify" | ||
| version = "0.50" | ||
| version = "0.51" | ||
| authors = [ | ||
| { name="BeProud Inc.", email="project@beproud.jp" }, | ||
| ] | ||
| description = "Notification routing for Django" | ||
| readme = "README.rst" | ||
| requires-python = ">=3.9" | ||
| requires-python = ">=3.10" | ||
| keywords=["django"] | ||
| classifiers = [ | ||
| "Development Status :: 3 - Alpha", | ||
| "License :: OSI Approved :: BSD License", | ||
| "Programming Language :: Python", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "Programming Language :: Python :: 3.14", | ||
| "Framework :: Django", | ||
| "Framework :: Django :: 4.2", | ||
| "Framework :: Django :: 5.1", | ||
kashewnuts marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "Framework :: Django :: 5.2", | ||
| "Intended Audience :: Developers", | ||
| "Environment :: Plugins", | ||
| "Topic :: Software Development :: Libraries :: Python Modules", | ||
|
|
@@ -34,3 +37,4 @@ Homepage = "https://github.com/beproud/bpnotify/" | |
|
|
||
| [tool.setuptools.packages.find] | ||
| where = ["."] | ||
| include = ["beproud.django.notify*"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MEMO: このPRではこの行でincludeの追加と、 |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| # content of: tox.ini , put in same dir as setup.py | ||
| [tox] | ||
| envlist = py{39,310,311,312}-dj42-celery53 | ||
| envlist = py{310,311,312}-dj{42,52}-celery53,py{313,314}-dj{42,52}-celery56 | ||
| skipsdist = True | ||
|
|
||
| [pytest] | ||
|
|
@@ -10,29 +10,32 @@ DJANGO_SETTINGS_MODULE = test_settings | |
|
|
||
| [testenv] | ||
| basepython = | ||
| py39: python3.9 | ||
| py310: python3.10 | ||
| py311: python3.11 | ||
| py312: python3.12 | ||
| py313: python3.13 | ||
| py314: python3.14 | ||
| deps = | ||
| pytest | ||
| pytest-django | ||
| pytest-pythonpath | ||
| setuptools | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MEMO: ソースコード上利用している箇所もなく、toxも通っているので削除しました。 |
||
| six | ||
| dj42: Django>=4.2,<5.0 | ||
| dj52: Django>=5.2,<6.0 | ||
| celery53: celery>=5.3,<5.4 | ||
| celery56: celery>=5.6,<5.7 | ||
| commands=pytest {posargs} | ||
|
|
||
| # tox-gh-actionsパッケージの設定 | ||
| [gh-actions] | ||
| python = | ||
| 3.9: py39 | ||
| 3.10: py310 | ||
| 3.11: py311 | ||
| 3.12: py312 | ||
| 3.13: py313 | ||
| 3.14: py314 | ||
kashewnuts marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| [gh-actions:env] | ||
| DJANGO = | ||
| 3.2: dj32 | ||
| 4.2: dj42 | ||
| 5.2: dj52 | ||
Uh oh!
There was an error while loading. Please reload this page.