Skip to content

Commit d8d5f5a

Browse files
committed
Stop testing against Python 3.8
Poetry 2.x no longer supports this.
1 parent 7c46be2 commit d8d5f5a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
RANDOM_SEED: 0
66
matrix:
77
- PYTHON_MAJOR: 3
8-
PYTHON_MINOR: 8
8+
PYTHON_MINOR: 9
99

1010
cache:
1111
- .venv -> poetry.lock

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11"]
10+
python-version: ["3.9", "3.10", "3.11"]
1111

1212
steps:
1313
- uses: actions/checkout@v4

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MODULES := $(wildcard $(PACKAGE)/*.py)
77
all: format check test mkdocs ## Run all tasks that determine CI status
88

99
.PHONY: dev
10-
dev: install .clean-test ## Continuously run all CI tasks when files chanage
10+
dev: install .clean-test ## Continuously run all CI tasks when files change
1111
poetry run sniffer
1212

1313
.PHONY: demo
@@ -90,7 +90,7 @@ format: install
9090
@ echo
9191

9292
.PHONY: check
93-
check: install format ## Run formaters, linters, and static analysis
93+
check: install format ## Run formatters, linters, and static analysis
9494
ifdef CI
9595
git diff --exit-code
9696
endif

0 commit comments

Comments
 (0)