Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into drop-python-3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurio committed May 7, 2024
2 parents 1b0d6d9 + 15d89c6 commit 09da9c0
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 28 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Close Stale Issues"
on:
schedule:
- cron: "0 1 * * *"
permissions:
issues: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: "This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 5 days."
days-before-issue-stale: 60
days-before-issue-close: 5
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ steps.setup-python.outputs.python-version }}-1.7.1-0
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-0
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-${{ steps.setup-python.outputs.python-version }}-1.7.1-0
Expand All @@ -94,7 +94,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-0
Expand Down
44 changes: 22 additions & 22 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ tomli = "^2.0.1"
types-click = "^7.1.8"
types-setuptools = "^68.1.0.0"
typing-extensions = "^4.5.0"
uvicorn = "^0.25.0"
uvicorn = "^0.29.0"
pydantic = {extras = ["email"], version="^2.0.0"}

[tool.poetry.extras]
Expand All @@ -131,7 +131,7 @@ all = ["mongoengine", "SQLAlchemy"]

[tool.poetry.group.dev.dependencies]
nox = "^2023.0.0"
ruff = "^0.1.0"
ruff = "^0.4.0"
urllib3 = "<=2.1.0"

[build-system]
Expand Down

0 comments on commit 09da9c0

Please sign in to comment.