Skip to content

Commit 03c7042

Browse files
committed
Add compatibility matrix and update classifiers
1 parent faa7a21 commit 03c7042

2 files changed

Lines changed: 16 additions & 6 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55

66
A Django package that adds a global or model based database table prefix
77

8+
## Compatibility Matrix
9+
10+
This library should be compatible with the latest Django. For reference, here is a matrix showing the tested compatibility.
11+
12+
| django-model-prefix Version | Django Versions | Python |
13+
|-----------------------------|-----------------|------------|
14+
| 1.1 | 4.2, 5.0, 5.1 | 3.9 - 3.13 |
15+
| 1.0 | 3.2, 4.0, 4.1 | 3.7 - 3.10 |
16+
17+
818
# Installation
919

1020
Install using pip:

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
classifiers=[
2424
'Development Status :: 5 - Production/Stable',
2525
'Framework :: Django',
26-
'Framework :: Django :: 3.0',
27-
'Framework :: Django :: 3.1',
28-
'Framework :: Django :: 4.0',
29-
'Framework :: Django :: 4.1',
26+
'Framework :: Django :: 4.2',
27+
'Framework :: Django :: 5.0',
28+
'Framework :: Django :: 5.1',
3029
'Intended Audience :: Developers',
3130
'License :: OSI Approved :: MIT License',
3231
'Operating System :: OS Independent',
3332
'Programming Language :: Python',
3433
'Programming Language :: Python :: 3',
35-
'Programming Language :: Python :: 3.7',
36-
'Programming Language :: Python :: 3.8',
3734
'Programming Language :: Python :: 3.9',
3835
'Programming Language :: Python :: 3.10',
36+
'Programming Language :: Python :: 3.11',
37+
'Programming Language :: Python :: 3.12',
38+
'Programming Language :: Python :: 3.13',
3939
],
4040
)

0 commit comments

Comments
 (0)