Skip to content

Commit da3790c

Browse files
committed
Remove 3.8 and add 3.12 support for tests
1 parent 1c90a6e commit da3790c

File tree

3 files changed

+237
-1971
lines changed

3 files changed

+237
-1971
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
matrix:
1212
os: [ubuntu-latest]
1313
python-version:
14-
- "3.8"
1514
- "3.9"
1615
- "3.10"
1716
- "3.11"
17+
- "3.12"
1818

1919
name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
2020
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "data-diff"
33
version = "0.11.2"
44
description = "Command-line tool and Python library to efficiently diff rows across two different databases."
55
readme = "README.md"
6-
requires-python = ">=3.8,<4.0"
6+
requires-python = ">=3.9,<4.0"
77
license = { file = "LICENSE" }
88
authors = [
99
{ name = "Datafold", email = "data-diff@datafold.com" },
@@ -13,10 +13,10 @@ classifiers = [
1313
"Intended Audience :: Developers",
1414
"Intended Audience :: Information Technology",
1515
"Intended Audience :: System Administrators",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
2020
"Development Status :: 2 - Pre-Alpha",
2121
"Environment :: Console",
2222
"Topic :: Database :: Database Engines/Servers",

0 commit comments

Comments
 (0)