-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
0b0b8d5
commit 96ccf1c
Showing
2 changed files
with
2 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
python-version: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|