-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into edgarrmondragon/chore/refactors-typos-cleanup
- Loading branch information
Showing
16 changed files
with
896 additions
and
803 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "bug: <title>" | ||
|
||
labels: | ||
- bug | ||
|
||
assignees: | ||
- edgarrmondragon | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: target_version | ||
attributes: | ||
label: Target Version | ||
description: Version of the package you are using | ||
placeholder: "0.0.10 on PyPI, 0.0.10 on GitHub, main branch, etc." | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: python_version | ||
attributes: | ||
label: Python Version | ||
description: Version of Python you are using | ||
options: | ||
- "3.12" | ||
- "3.11" | ||
- "3.10" | ||
- "3.9" | ||
- "3.8" | ||
- "NA" | ||
validations: | ||
required: true | ||
- type: input | ||
id: postgres_version | ||
attributes: | ||
label: PostgreSQL Version | ||
description: Version of PostgreSQL the target is loading | ||
placeholder: "15.1" | ||
validations: | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: What operating system you are using | ||
placeholder: "Linux - Ubuntu 20.04" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Description | ||
description: Describe what you were trying to get done | ||
placeholder: Tell us what happened, what went wrong, and what you expected to happen | ||
validations: | ||
required: true | ||
- type: input | ||
id: slack_or_linen | ||
attributes: | ||
label: Link to Slack/Linen | ||
description: Provide a link to the Slack or Linen conversation, if applicable | ||
placeholder: "https://..." |
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 |
---|---|---|
|
@@ -37,4 +37,6 @@ jobs: | |
tag: ${{ github.ref }} | ||
overwrite: true | ||
file_glob: true | ||
- uses: pypa/[email protected] | ||
- uses: pypa/[email protected] | ||
with: | ||
attestations: true |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
[tool.poetry] | ||
name = "meltanolabs-target-postgres" | ||
version = "0.0.0" | ||
description = "`target-postgres` is a Singer target for Postgres, built with the Meltano SDK for Singer Targets." | ||
description = "Singer target for Postgres, built with the Meltano SDK for Singer Targets." | ||
authors = ["Meltano Team and Contributors <[email protected]>"] | ||
maintainers = ["Meltano Team and Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
homepage = "https://meltano.com" | ||
repository = "https://github.com/meltanolabs/target-postgres" | ||
repository = "https://github.com/MeltanoLabs/target-postgres" | ||
documentation = "https://github.com/MeltanoLabs/target-postgres/blob/main/README.md" | ||
keywords = [ | ||
"Postgres", | ||
"Singer", | ||
|
@@ -32,12 +33,16 @@ packages = [ | |
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8" | ||
faker = {version = "~=29.0", optional = true} | ||
psycopg2-binary = "2.9.9" | ||
sqlalchemy = "~=2.0" | ||
sshtunnel = "0.4.0" | ||
|
||
[tool.poetry.dependencies.singer-sdk] | ||
version = "~=0.38.0" | ||
version = "~=0.40.0a1" | ||
|
||
[tool.poetry.extras] | ||
faker = ["faker"] | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = ">=7.4.2" | ||
|
@@ -58,7 +63,7 @@ module = ["sshtunnel"] | |
ignore_missing_imports = true | ||
|
||
[build-system] | ||
requires = ["poetry-core==1.9.0", "poetry-dynamic-versioning==1.3.0"] | ||
requires = ["poetry-core==1.9.0", "poetry-dynamic-versioning==1.4.0"] | ||
build-backend = "poetry_dynamic_versioning.backend" | ||
|
||
[tool.poetry.scripts] | ||
|
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
Oops, something went wrong.