Skip to content

Commit 498738a

Browse files
committed
Set 3.9 as minimum Python version
1 parent e596930 commit 498738a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ['3.8', '3.14']
20+
python-version: ['3.9', '3.14']
2121

2222
services:
2323
postgres:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
django-datacite
22
===============
33

4-
[![Latest release](https://img.shields.io/pypi/v/django-datacite.svg?style=flat)](https://pypi.python.org/pypi/django-datacite/)
5-
[![License](https://img.shields.io/github/license/ISI-MIP/django-datacite?style=flat)](https://github.com/rdmorganiser/django-datacite/blob/main/LICENSE)
4+
[![Python Version](https://img.shields.io/badge/python->=3.9-blue)](https://www.python.org/)
5+
[![License](https://img.shields.io/github/license/ISI-MIP/django-datacite?style=flat)](https://github.com/ISI-MIP/django-datacite/blob/main/LICENSE)
66
[![CI status](https://github.com/ISI-MIP/django-datacite/actions/workflows/ci.yml/badge.svg)](https://github.com/ISI-MIP/django-datacite/actions/workflows/ci.yml)
77
[![Coverage status](https://coveralls.io/repos/ISI-MIP/django-datacite/badge.svg?branch=main&service=github)](https://coveralls.io/github/ISI-MIP/django-datacite?branch=main)
8+
[![Latest release](https://img.shields.io/pypi/v/django-datacite.svg?style=flat)](https://pypi.python.org/pypi/django-datacite/)
89
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.18376442.svg)](https://doi.org/10.5281/zenodo.18376442)
910

1011
A Django app to properly model the [DataCite Metadata Schema](https://schema.datacite.org/) in a relational database, with full integration into the Django admin interface. The app is *slightly* opinionated in a way to make it better usable as a DOI registration database. Names (`creators` and `contributors`) and identifiers (for the resources, but also for `alternativeIdentifiers` and `relatedIdentifiers`) are stored in separate database tables and can be reused for different resources.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ description = """
1414
A Django app to properly model the DataCite Metadata Schema in a relational database,
1515
with full integration into the Django admin interface."""
1616
readme = "README.md"
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.9"
1818
license = { file = "LICENSE" }
1919
classifiers = [
2020
'Operating System :: OS Independent',
2121
'License :: OSI Approved :: MIT License',
22-
'Programming Language :: Python :: 3.8',
2322
'Programming Language :: Python :: 3.9',
2423
'Programming Language :: Python :: 3.10',
2524
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)