Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor tweaks #72

Merged
merged 6 commits into from
Feb 20, 2024
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
5 changes: 2 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
interval: weekly

- package-ecosystem: pip
directory: /
schedule:
interval: monthly
versioning-strategy: lockfile-only
interval: weekly
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
run: poetry install --no-interaction --no-root --with=dev,test

- name: Unit tests
run: poetry run pytest -m unit
run: poetry run poe test_unit

- name: Integration tests
if: ${{ ! github.event.pull_request.head.repo.fork }}
run: poetry run pytest -m integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud
run: poetry run poe test_integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Development
***********

- support Python 3.12
- replace `^` by `>=` in dependency specifications

0.4.1 (2023-11-21)
******************
Expand Down
Loading
Loading