Skip to content

Commit 83e205e

Browse files
authored
Min python is 3.9 (#190)
1 parent a1517b8 commit 83e205e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: "Run tests with Python ${{ matrix.python-version }} on ${{ matrix.os }}"
1616
strategy:
1717
matrix:
18-
python-version: [ '3.8', '3.12', '3.13' ]
18+
python-version: [ '3.9', '3.13' ]
1919
os: [ "ubuntu-22.04", "ubuntu-24.04" ]
2020
fail-fast: false
2121

docs/source/get_started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Get Started
44
Requirements
55
------------
66

7-
* Python 3.8 or later
7+
* Python 3.9 or later
88
* SWI-Prolog 8.4.2 or later
99
* 64bit Intel or ARM processor
1010

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "pyswip"
77
version = "0.3.2"
88
description = "PySwip enables querying SWI-Prolog in your Python programs."
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
authors = [
1212
{ name = "Yuce Tekol", email = "[email protected]" },
1313
]
@@ -27,11 +27,11 @@ classifiers = [
2727
"Programming Language :: Python",
2828
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2929
"Topic :: Software Development :: Libraries :: Python Modules",
30-
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3535
"Programming Language :: Python :: Implementation :: CPython",
3636
]
3737

0 commit comments

Comments
 (0)