Skip to content

Commit 3a4209d

Browse files
committed
Drop Python 3.8 support, set minimum to 3.9
1 parent b379599 commit 3a4209d

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/linting_and_unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
# macos-latest currently has issues (https://github.com/actions/setup-python/issues/855)
1616
os: [ubuntu-latest, windows-latest, macos-13]
17-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
17+
python-version: ['3.9', '3.10', '3.11', '3.12']
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- uses: actions/checkout@v2

docs/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Installation
55
Requirements
66
------------
77

8-
Bibtexparsers only requirement is a python interpreter which is not yet EOL (currently >= 3.7).
8+
Bibtexparser's only requirement is a python interpreter which is not yet EOL (currently >= 3.9).
99

1010
As of version 2.0.0, bibtexparser is a pure-python project (no direct bindings to C libraries).
1111
As such, it should be rather easy to install on any platform.

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,15 @@ def load_readme():
2929
description="Bibtex parser for python 3",
3030
long_description_content_type="text/markdown",
3131
long_description=load_readme(),
32+
python_requires='>=3.9',
3233
packages=setuptools.find_packages(include=["bibtexparser", "bibtexparser.*"]),
3334
classifiers=[
3435
"Development Status :: 4 - Beta",
3536
"Programming Language :: Python :: 3",
37+
"Programming Language :: Python :: 3.9",
38+
"Programming Language :: Python :: 3.10",
39+
"Programming Language :: Python :: 3.11",
40+
"Programming Language :: Python :: 3.12",
3641
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3742
"License :: OSI Approved :: MIT License",
3843
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)