Skip to content

Commit

Permalink
Test on multiple python versions (#156)
Browse files Browse the repository at this point in the history
* feat: update Python and dbt versions in tests.yml

* Modify the supported python versions in `pyproject.toml`

Signed-off-by: Yu Ishikawa <[email protected]>

* feat: update Python and dbt versions in tests.yml

* Upgrade pip to 24.0 in `constraints.txt`

Signed-off-by: Yu Ishikawa <[email protected]>

---------

Signed-off-by: Yu Ishikawa <[email protected]>
  • Loading branch information
yu-iskw authored Jun 7, 2024
1 parent 8c5781c commit f334d3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pip==23.0.1
pip==24.0
poetry==1.3.2
virtualenv==20.21.0
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
dbt-version: ["1.6.0", "1.7.0", "1.8.0"]

steps:
Expand All @@ -20,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.10"
python-version: "${{ matrix.python-version }}"

- name: Upgrade pip
run: |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["dbt", "server", "streamlit", "git", "diff"]
documentation = "https://github.com/z3z1ma/dbt-osmosis"
Expand Down

0 comments on commit f334d3a

Please sign in to comment.