Skip to content

Commit

Permalink
use python 3.12, fix codecov (#160)
Browse files Browse the repository at this point in the history
* use python 3.12, fix codecov

* py3.12 Sequence import changed
  • Loading branch information
falkben authored Oct 9, 2024
1 parent e0ab927 commit 0e563c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
cache: "pip"

- name: Install
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
cache: "pip"

- name: Install dependencies
Expand All @@ -33,3 +33,4 @@ jobs:
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion scripts/uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import os
import time
from argparse import ArgumentParser
from collections.abc import Sequence
from pathlib import Path
from typing import Sequence

import dropbox
from dotenv import load_dotenv
Expand Down

0 comments on commit 0e563c7

Please sign in to comment.