Skip to content

Commit

Permalink
Drop py3.8, support py3.13, update deps (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-burst authored Jan 10, 2025
1 parent 80c7b1a commit 5c79fe6
Show file tree
Hide file tree
Showing 4 changed files with 357 additions and 246 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
strategy:
matrix:
python-version:
- 3.8
- 3.9
- "3.10"
- 3.11
- 3.12
- 3.13

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- uses: snok/install-poetry@v1
with:
version: 1.8.2
version: 2.0.0

- name: Show environment info
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
poetry config --list
- name: Setup dependencies cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }}
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# flake8-pytest-style

[![pypi](https://badge.fury.io/py/flake8-pytest-style.svg)](https://pypi.org/project/flake8-pytest-style)
[![Python: 3.8+](https://img.shields.io/badge/Python-3.8+-blue.svg)](https://pypi.org/project/flake8-pytest-style)
[![Python: 3.9+](https://img.shields.io/badge/Python-3.9+-blue.svg)](https://pypi.org/project/flake8-pytest-style)
[![Downloads](https://img.shields.io/pypi/dm/flake8-pytest-style.svg)](https://pypistats.org/packages/flake8-pytest-style)
[![Build Status](https://github.com/m-burst/flake8-pytest-style/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/m-burst/flake8-pytest-style/actions/workflows/ci.yml)
[![Code coverage](https://codecov.io/gh/m-burst/flake8-pytest-style/branch/master/graph/badge.svg)](https://codecov.io/gh/m-burst/flake8-pytest-style)
Expand Down Expand Up @@ -83,7 +83,8 @@ MIT

**Unreleased**

...
* require at least Python 3.9
* support Python 3.13

**2.0.0 - 2024-04-01**

Expand Down
Loading

0 comments on commit 5c79fe6

Please sign in to comment.