Skip to content

Commit 831409a

Browse files
amurekicodingjoe
authored andcommitted
Sync active Python/Django versions
- Python: add 3.9, 3.10, remove 3.6 - Django: add 4.0, remove 3.0, 3.1 - fixes to PyPI classifiers
1 parent 649e294 commit 831409a

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,14 @@ jobs:
4848
strategy:
4949
matrix:
5050
python-version:
51-
- 3.6
52-
- 3.7
53-
- 3.8
51+
- "3.7"
52+
- "3.8"
53+
- "3.9"
54+
- "3.10"
5455
django-version:
5556
- 2.2.*
56-
- 3.0.*
57-
- 3.1.*
57+
- 3.2.*
58+
- 4.0.*
5859
steps:
5960
- name: Set up Python ${{ matrix.python-version }}
6061
uses: actions/setup-python@v2

joeflow/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
"""The lean workflow automation framework for machines with heart."""
2-
default_app_config = "joeflow.apps.JoeflowConfig"
2+
import django
3+
4+
if django.VERSION < (3, 2):
5+
default_app_config = "joeflow.apps.JoeflowConfig"

setup.cfg

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = joeflow
3-
author = Johannes Hoppe
4-
author_email = [email protected]
3+
author = Johannes Maron
4+
author_email = [email protected]
55
description = The lean workflow automation framework for machines with heart
66
long_description = file: README.rst
77
license = BSD
@@ -10,18 +10,19 @@ url = https://github.com/codingjoe/joeflow
1010
# Find more classifiers here:
1111
# https://pypi.org/pypi?%3Aaction=list_classifiers
1212
classifier =
13-
Development Status :: 4 - Beta
13+
Development Status :: 5 - Production/Stable
1414
Framework :: Django
1515
Framework :: Django :: 2.2
16-
Framework :: Django :: 3.0
17-
Framework :: Django :: 3.1
16+
Framework :: Django :: 3.2
17+
Framework :: Django :: 4.0
1818
Environment :: Web Environment
1919
License :: OSI Approved :: BSD License
2020
Operating System :: OS Independent
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.6
2322
Programming Language :: Python :: 3.7
2423
Programming Language :: Python :: 3.8
24+
Programming Language :: Python :: 3.9
25+
Programming Language :: Python :: 3.10
2526
Programming Language :: Python :: 3 :: Only
2627
Topic :: Home Automation
2728
Topic :: Internet
@@ -83,7 +84,7 @@ test = pytest
8384
source-dir = docs
8485
build-dir = docs/_build
8586
project = joeflow
86-
copyright = 2018, Johannes Hoppe
87+
copyright = 2018, Johannes Maron
8788

8889
[tool:pytest]
8990
addopts =

0 commit comments

Comments
 (0)