Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
52 changes: 26 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ license = "MIT"
packages = [{include = "dbt_eppo_sync", from = "src"}]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
pyyaml = "^6.0" # For parsing YAML files
requests = "^2.32.5" # For making API calls to Eppo
requests = "^2.33.0" # For making API calls to Eppo
dbt-core = "^1.10.5" # For interacting with dbt artifacts
click = "^8.1.8"
jsonschema = "^4.23.0"
urllib3 = "^2.6.3" # set explicitly to solve vulnerability in earlier versions
urllib3 = "^2.7.0" # set explicitly to solve vulnerability in earlier versions
deepdiff = "^8.6.1" # set explicitly to solve critical vulnerability in earlier versions

[tool.poetry.group.dev.dependencies]
pytest = "^8.4" # For running tests; >=8.3.4 patches GHSA-6w46-j5rx-g56g
pytest = "^9.0.3" # For running tests; >=9.0.3 patches GHSA-6w46-j5rx-g56g
pytest-mock = "^3.15.1"

[build-system]
Expand Down
Loading