Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Python 3.13 for all plugins #442

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/melty.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,11 @@ jobs:
- "pocket-to-duckdb"
- "stackoverflow-to-duckdb"
- "rtd-to-duckdb"
- "gh-to-duckdb"
ok_to_skip: [false]
include:
- job: "pypistats-to-duckdb"
ok_to_skip: true
- job: "gh-to-duckdb"
python-version: "3.12"

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"templater",
"venv"
],
"editor.acceptSuggestionOnEnter": "on",
"editor.acceptSuggestionOnEnter": true,
"editor.quickSuggestions": {
"other": false,
"comments": false,
Expand Down
4 changes: 2 additions & 2 deletions meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: 1
default_environment: dev
project_id: b77cad0a-ffd8-494e-9e6b-18d6eacb71d4
project_readonly: true
python: python3.13
cli:
log_config: logging/dev.yaml
venv:
Expand Down Expand Up @@ -30,12 +31,11 @@ plugins:
- projects.*
- name: tap-github
variant: meltanolabs
pip_url: git+https://github.com/MeltanoLabs/tap-github.git@v1.7.0 python-json-logger
pip_url: git+https://github.com/MeltanoLabs/tap-github.git@v1.9.0 python-json-logger
config:
repositories:
- edgarrmondragon/citric
- edgarrmondragon/tap-readthedocs
python: python3.12
select:
- repositories.*
- stargazers.*
Expand Down
1 change: 1 addition & 0 deletions pkl/main.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ output {
value = new project.MeltanoProject {
default_environment = "dev"
project_id = "b77cad0a-ffd8-494e-9e6b-18d6eacb71d4"
python = "python3.13"
env = new Mapping {
["SINGER_SDK_LOG_CONFIG"] = "logging/singer_logging.yaml"
}
Expand Down
3 changes: 1 addition & 2 deletions pkl/plugins/extractors/tap_github.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ import "../../lib/meltano/plugin.pkl"
tap_github = new plugin.Extractor {
name = "tap-github"
variant = "meltanolabs"
pip_url = "git+https://github.com/MeltanoLabs/[email protected] python-json-logger"
python = "python3.12"
pip_url = "git+https://github.com/MeltanoLabs/[email protected] python-json-logger"
config = new Mapping {
["repositories"] = List(
"edgarrmondragon/citric",
Expand Down
Loading