Skip to content

Commit

Permalink
feat: Support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 15, 2023
1 parent 87ac44e commit 346ed7b
Show file tree
Hide file tree
Showing 5 changed files with 229 additions and 81 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/testci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt

Expand Down
20 changes: 9 additions & 11 deletions meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,20 @@ plugins:
extractors:
- name: tap-smoke-test
namespace: tap_smoke_test
# TODO: To test using Meltano, replace with absolute path
# to the tap-smoke-test.sh script:
executable: ./tap-smoke-test.sh
pip_url: -e .
capabilities:
- state
- catalog
- discover
config:
start_date: '2010-01-01T00:00:00Z'
settings:
# TODO: To configure using Meltano, declare settings and their types here:
- name: username
- name: password
kind: password
- name: start_date
value: '2010-01-01T00:00:00Z'
- name: streams
kind: array
- name: schema_inference_record_count
kind: integer
- name: client_exception
kind: boolean
- name: schema_gen_exception
kind: boolean
loaders:
- name: target-jsonl
variant: andyh1203
Expand Down
Loading

0 comments on commit 346ed7b

Please sign in to comment.