Skip to content

Commit

Permalink
chore: Drop Python 3.7 and 3.8
Browse files Browse the repository at this point in the history
Both of these version of Python have reached end-of-life. Python 3.7 is no longer supported by the `setup-python` GitHub Action.
  • Loading branch information
WillDaSilva committed Jan 13, 2025
1 parent 0b0b8d5 commit 96ccf1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,19 @@ requires = ["hatchling"]

[project]
name = "target-sqlite"
version = "0.5.1"
version = "0.6.0"
keywords = ["singer-io", "meltano", "elt", "sqlite", "singer-tap"]
readme = "README.md"
license.file = "LICENSE"
maintainers = [{ name = "Meltano", email = "[email protected]" }]
authors = [{ name = "Meltano", email = "[email protected]" }]
description = "Singer.io target for importing data to SQLite"
requires-python = ">=3.7"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit 96ccf1c

Please sign in to comment.