Skip to content

Commit 0539975

Browse files
committed
Drop Python 3.8 support (cannot support the new project.toml license syntax).
1 parent 32f7116 commit 0539975

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
15+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1616
pip-sphinx: ['sphinx']
1717
pytest-options: ['']
1818
include:
@@ -56,7 +56,7 @@ jobs:
5656
python-version: ${{ matrix.python-version }}
5757
- name: Install dependencies
5858
run: |
59-
python -m pip install --upgrade pip setuptools
59+
python -m pip install --upgrade pip
6060
python -m pip install pytest codecov coverage
6161
python -m pip install . sphinx-autoapi ${{ matrix.pip-sphinx }}
6262
- name: Install extra dependencies

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
in the latest release of pybtex.
99
See discussion in issue #345.
1010

11-
* Python 3.7 is EOL and is therefore no longer officially supported.
11+
* Python 3.7 and 3.8 are EOL and are therefore no longer officially supported.
1212

1313
* FootCiteRole now derives from SphinxRole instead of XRefRole,
1414
simplifying the implementation.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "2.6.4a1"
88
license = "BSD-2-Clause"
99
description = "Sphinx extension for BibTeX style citations."
1010
readme = "README.rst"
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{email = "matthias.troffaes@gmail.com"},
1414
{name = "Matthias C. M. Troffaes"},
@@ -21,7 +21,6 @@ classifiers = [
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)