mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
Update versions and copyrights to begin the 0.4 release dev cycle
This commit is contained in:
parent
266694509f
commit
5ca1f39c23
@ -53,7 +53,7 @@ Installation
|
|||||||
`django-helpdesk` requires:
|
`django-helpdesk` requires:
|
||||||
|
|
||||||
* Python 3.8+
|
* Python 3.8+
|
||||||
* Django 2.2 LTS or 3.2 LTS (recommend migration to 3.2 as soon as possible)
|
* Django 3.2 LTS
|
||||||
|
|
||||||
You can quickly install the latest stable version of `django-helpdesk`
|
You can quickly install the latest stable version of `django-helpdesk`
|
||||||
app via `pip`::
|
app via `pip`::
|
||||||
|
@ -13,7 +13,7 @@ project_root = os.path.dirname(here)
|
|||||||
NAME = 'django-helpdesk-demodesk'
|
NAME = 'django-helpdesk-demodesk'
|
||||||
DESCRIPTION = 'A demo Django project using django-helpdesk'
|
DESCRIPTION = 'A demo Django project using django-helpdesk'
|
||||||
README = open(os.path.join(here, 'README.rst')).read()
|
README = open(os.path.join(here, 'README.rst')).read()
|
||||||
VERSION = '0.3.0'
|
VERSION = '0.4.0a1'
|
||||||
#VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
|
#VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
|
||||||
AUTHOR = 'django-helpdesk team'
|
AUTHOR = 'django-helpdesk team'
|
||||||
URL = 'https://github.com/django-helpdesk/django-helpdesk'
|
URL = 'https://github.com/django-helpdesk/django-helpdesk'
|
||||||
@ -22,7 +22,6 @@ CLASSIFIERS = ['Development Status :: 4 - Beta',
|
|||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
'Programming Language :: Python :: 3.10',
|
'Programming Language :: Python :: 3.10',
|
||||||
'Framework :: Django :: 2.2',
|
|
||||||
'Framework :: Django :: 3.2']
|
'Framework :: Django :: 3.2']
|
||||||
KEYWORDS = []
|
KEYWORDS = []
|
||||||
PACKAGES = ['demodesk']
|
PACKAGES = ['demodesk']
|
||||||
|
@ -10,7 +10,7 @@ Prerequisites
|
|||||||
Before getting started, ensure your system meets the following recommended dependencies:
|
Before getting started, ensure your system meets the following recommended dependencies:
|
||||||
|
|
||||||
* Python 3.8+
|
* Python 3.8+
|
||||||
* Django 2.2 LTS or 3.2 LTS (strongly recommend migrating to 3.2 LTS as soon as possible)
|
* Django 3.2 LTS
|
||||||
|
|
||||||
Ensure any extra Django modules you wish to use are compatible before continuing.
|
Ensure any extra Django modules you wish to use are compatible before continuing.
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ License
|
|||||||
django-helpdesk is released under the terms of the BSD license. You must agree to these terms before installing or using django-helpdesk.::
|
django-helpdesk is released under the terms of the BSD license. You must agree to these terms before installing or using django-helpdesk.::
|
||||||
|
|
||||||
Copyright (c) 2008, Ross Poulton (Trading as Jutda)
|
Copyright (c) 2008, Ross Poulton (Trading as Jutda)
|
||||||
|
Copyright (c) 2008-2021, django-helpdesk contributors
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
@ -11,6 +11,12 @@ Please consult the Installation instructions for general instructions and tips.
|
|||||||
The tips below are based on modifications of the original installation instructions.
|
The tips below are based on modifications of the original installation instructions.
|
||||||
|
|
||||||
|
|
||||||
|
0.3 -> 0.4
|
||||||
|
----------
|
||||||
|
|
||||||
|
- Under `INSTALLED_APPS`, `bootstrap4form` needs to be replaced with `bootstrap5form`
|
||||||
|
|
||||||
|
|
||||||
0.2 -> 0.3
|
0.2 -> 0.3
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
3
setup.py
3
setup.py
@ -4,7 +4,7 @@ from distutils.util import convert_path
|
|||||||
from fnmatch import fnmatchcase
|
from fnmatch import fnmatchcase
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
version = '0.3.0'
|
version = '0.4.0a1'
|
||||||
|
|
||||||
# Provided as an attribute, so you can append to these instead
|
# Provided as an attribute, so you can append to these instead
|
||||||
# of replicating them:
|
# of replicating them:
|
||||||
@ -128,7 +128,6 @@ setup(
|
|||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Framework :: Django",
|
"Framework :: Django",
|
||||||
'Framework :: Django :: 2.2',
|
|
||||||
"Framework :: Django :: 3.2",
|
"Framework :: Django :: 3.2",
|
||||||
"Environment :: Web Environment",
|
"Environment :: Web Environment",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
|
Loading…
Reference in New Issue
Block a user