Skip to content

Commit

Permalink
ci: upgrade min python version to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Jun 6, 2024
1 parent 6da2ad0 commit 678cfd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"github_url": "https://github.com/pycontw/mail_handler",
"author_name": "Wei Lee",
"author_email": "[email protected]",
"python_version": "3.7",
"python_version": "3.8",
"dependency_management_tool": "poetry",
"default_branch": "master",
"use_strict_mypy_config": "n",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-updated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: "3.8"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion tasks/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@task
def clean(ctx: Context) -> None:
"""Remove virtual environment"""
ctx.run("poetry env remove 3.7", warn=True)
ctx.run("poetry env remove 3.8", warn=True)


@task
Expand Down

0 comments on commit 678cfd5

Please sign in to comment.