Skip to content

Commit

Permalink
Merge pull request #10 from al-babych-fivetran/babych/version-10
Browse files Browse the repository at this point in the history
Mark the project as compatible with Python 3.10
  • Loading branch information
rhicksiii91 authored Sep 11, 2024
2 parents 4ae8038 + 5f3fdfb commit c507de9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
version: ["3.9", "3.10"]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.9
- name: Set up Python ${{ matrix.version }}
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: ${{ matrix.version }}

- name: Install Poetry
run: pip install poetry
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Scott Esbrandt <[email protected]>"]
license = "Apache-2.0"

[tool.poetry.dependencies]
python = "~3.9"
python = ">=3.9,<3.11"
pysnyk = "^0.9.2"
typer = "^0.4.1"
pydantic = "^2.6.4"
Expand Down

0 comments on commit c507de9

Please sign in to comment.