Skip to content

Commit 2038ddd

Browse files
committed
add db badges, test postgre 9.6 on 3.2
1 parent ef2c52b commit 2038ddd

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,17 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
19-
postgres-version: ['12', 'latest']
19+
postgres-version: ['9.6', '12', 'latest']
2020
psycopg-version: ['psycopg2', 'psycopg3']
2121
django-version:
2222
- '3.2' # LTS April 2024
2323
- '4.2' # LTS April 2026
2424
- '5.0' # April 2025
2525
exclude:
26+
- django-version: '4.2'
27+
postgres-version: '9.6'
28+
- django-version: '5.0'
29+
postgres-version: '9.6'
2630
- python-version: '3.11'
2731
django-version: '3.2'
2832
- python-version: '3.12'

README.rst

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
|MIT license| |PyPI version fury.io| |PyPI pyversions| |PyPi djversions| |PyPI status| |Documentation Status|
2-
|Code Cov| |Test Status| |Lint Status| |Code Style|
2+
|Code Cov| |Test Status| |Lint Status| |Code Style| |Postgres| |MySQL| |MariaDB| |SQLite| |Oracle|
33

44
.. |MIT license| image:: https://img.shields.io/badge/License-MIT-blue.svg
55
:target: https://lbesson.mit-license.org/
@@ -31,6 +31,21 @@
3131
.. |Code Style| image:: https://img.shields.io/badge/code%20style-black-000000.svg
3232
:target: https://github.com/psf/black
3333

34+
.. |Postgres| image:: https://img.shields.io/badge/Postgres-9.5%2B-blue
35+
:target: https://www.postgresql.org/
36+
37+
.. |MySQL| image:: https://img.shields.io/badge/MySQL-5.7%2B-blue
38+
:target: https://www.mysql.com/
39+
40+
.. |MariaDB| image:: https://img.shields.io/badge/MariaDB-10.2%2B-blue
41+
:target: https://mariadb.org/
42+
43+
.. |SQLite| image:: https://img.shields.io/badge/SQLite-3.8%2B-blue
44+
:target: https://www.sqlite.org/
45+
46+
.. |Oracle| image:: https://img.shields.io/badge/Oracle-18%2B-blue
47+
:target: https://www.oracle.com/database/
48+
3449

3550
.. _Django: https://www.djangoproject.com/
3651
.. _GitHub: https://github.com/bckohan/django-enum

0 commit comments

Comments
 (0)