Skip to content

Commit

Permalink
Merge pull request #32 from quantile-development/feature/python-3.11
Browse files Browse the repository at this point in the history
Increased python version range
  • Loading branch information
JulesHuisman authored May 17, 2023
2 parents ff652f5 + 39c7906 commit d6fe6ac
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
meltano:
- ">=2,<3"

steps:
- name: Check out repository code
Expand All @@ -14,7 +24,7 @@ jobs:
- name: Setup Python
uses: actions/[email protected]
with:
python-version: 3.8
python-version: ${{ matrix.python }}
architecture: x64
cache: "pip"
cache-dependency-path: "poetry.lock"
Expand All @@ -26,7 +36,7 @@ jobs:
run: poetry install

- name: Install Meltano
run: pipx install meltano==2.12.0
run: pipx install 'meltano${{ matrix.meltano }}'

- name: Install Meltano plugins
run: |
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dagster-meltano"
version = "1.2.1"
version = "1.2.2"
description = "A dagster plugin that allows you to run your Meltano project inside Dagster."
authors = ["Jules Huisman"]
license = "Apache 2.0"
Expand All @@ -10,8 +10,8 @@ packages = [
]

[tool.poetry.dependencies]
python = "<3.11,>=3.8"
dagster = ">=1.0"
python = ">=3.8,<3.12"
dagster = ">=1.0,<2"
dagster-shell = ">=0,<1"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit d6fe6ac

Please sign in to comment.