Skip to content

Commit

Permalink
drop python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jonapich committed Oct 18, 2024
1 parent bf8cee9 commit e27eb8a
Show file tree
Hide file tree
Showing 6 changed files with 129 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coveo-stew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
poetry-version: [""]
os: [ubuntu-latest, windows-latest, macos-latest]

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Similar to: nothing! it's unique! 😎


# Prerequisites
*Changed in 3.1*: You need python 3.9+ to run stew, but you can still use it on projects requiring older versions of python.

*Changed in 3.0*: `poetry` is no longer provided out-of-the-box.

Expand Down
1 change: 0 additions & 1 deletion coveo_stew/ci/any_runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os
from enum import Enum, auto
from typing import Any, Iterable, List, Optional, Tuple, Union

Expand Down
12 changes: 1 addition & 11 deletions coveo_stew/ci/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,7 @@
from dataclasses import dataclass
from functools import cached_property
from pathlib import Path
from typing import (
Any,
Callable,
Coroutine,
Iterable,
List,
Optional,
Protocol,
Sequence,
Tuple,
)
from typing import Any, Coroutine, Iterable, List, Optional, Protocol, Sequence, Tuple

from coveo_styles.styles import echo
from coveo_systools.subprocess import DetailedCalledProcessError
Expand Down
Loading

0 comments on commit e27eb8a

Please sign in to comment.