-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Add support for Python 3.12 (#48)
## About By refreshing a few dependencies, the package seems to also work on Python 3.12. ## Details The patch has been validated on behalf of a CI run on another patch. - pyveci/pueblo#47 ![image](https://github.com/MeltanoLabs/target-csv/assets/453543/f74c2ed7-88b7-460c-a71c-abfa898f53be)
- Loading branch information
Showing
4 changed files
with
23 additions
and
4 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
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
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,6 +4,24 @@ version = "0.0.1" | |
description = "`target-csv` is a Singer target for CSV, built with the Meltano SDK for Singer Targets." | ||
authors = ["Meltano <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = [ | ||
"CSV", | ||
"Singer", | ||
"ELT", | ||
"ETL", | ||
"Meltano", | ||
"Meltano SDK", | ||
] | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8" | ||
|
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