Skip to content

Commit 209d1be

Browse files
authored
Drop Python 3.8 support and add 3.13 support (#87)
* Drop py3.8 + add py3.13 support * Update README
1 parent b86b718 commit 209d1be

File tree

4 files changed

+77
-113
lines changed

4 files changed

+77
-113
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- name: Checkout the repository

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22

33
![PyPI version](https://img.shields.io/pypi/v/pgn-to-sqlite)
44
![GitHub](https://img.shields.io/github/license/endlesstrax/pgn-to-sqlite)
5-
![Black](https://img.shields.io/badge/code%20style-black-000000.svg)
65

76
A cli application for pulling pgn files from Chess.com and Lichess.org and putting your games into a sqlite database.
87

98
It can also be used to save pgn files from a local folder to a sqlite database.
109

1110
## Install
1211

13-
> Requires Python 3.8 and above.
12+
> Requires Python 3.9 and above.
1413
1514
It is recommended that you install this package in a virtual or isoloated environment. The easiest way to do this is with [pipx](https://github.com/pypa/pipx).
1615

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ build-backend = "hatchling.build"
55
[project]
66
name = "pgn_to_sqlite"
77
version="2.1.14"
8-
requires-python = ">=3.8"
8+
requires-python = ">=3.9"
99
authors = [{name = "Ricky White", email = "[email protected]"}]
1010
description = "Pull your Chess games from chess.com and lichess.org into a sqlite3 database."
1111
readme = "README.md"
1212
license = {file = "LICENSE"}
1313
classifiers = [
1414
"License :: OSI Approved :: MIT License",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
2020
]
2121
dependencies = [
2222
"berserk==0.13.2",

0 commit comments

Comments
 (0)