Skip to content

Commit

Permalink
Use Python 3.13 for all plugins (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jan 3, 2025
1 parent e2b1eba commit bb07c26
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
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

0 comments on commit bb07c26

Please sign in to comment.