Update CI and tooling (#236)

* Update pre-commit hooks

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>

* Add Python 3.12

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>

* Drop python 3.7 and add 3.12 to TOX

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>

* Migrate to latest action versions. Drop v3.7 from CI and add 3.12

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>

* Migrate to Python 3.8

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>

* Fix changelog message.

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>

---------

Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
This commit is contained in:
Yurii Serhiichuk 2024-05-26 21:49:35 +03:00 committed by GitHub
parent 21572afb57
commit eedc61e9b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 19 additions and 15 deletions

View File

@ -7,9 +7,9 @@ jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
cache: 'pip' cache: 'pip'
@ -22,13 +22,13 @@ jobs:
test: test:
strategy: strategy:
matrix: matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11'] python: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
cache: 'pip' cache: 'pip'

View File

@ -12,15 +12,16 @@ jobs:
name: Build source distribution name: Build source distribution
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Build SDist and wheel - name: Build SDist and wheel
run: pipx run build run: pipx run build
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v4
with: with:
name: artifact
path: dist/* path: dist/*
- name: Check metadata - name: Check metadata
@ -30,7 +31,7 @@ jobs:
if: github.event_name == 'push' if: github.event_name == 'push'
needs: [ build_dist ] needs: [ build_dist ]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Set up Python - name: Set up Python
@ -40,7 +41,7 @@ jobs:
cache: 'pip' cache: 'pip'
- name: Install build dependencies - name: Install build dependencies
run: pip install -U setuptools wheel build run: pip install -U setuptools wheel build
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v4
with: with:
# unpacks default artifact into dist/ # unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir # if `name: artifact` is omitted, the action will create extra parent dir

View File

@ -6,17 +6,17 @@ repos:
- id: end-of-file-fixer - id: end-of-file-fixer
- id: check-toml - id: check-toml
- repo: https://github.com/pycqa/isort - repo: https://github.com/pycqa/isort
rev: 5.12.0 rev: 5.13.2
hooks: hooks:
- id: isort - id: isort
args: [ "--profile", "black", "--filter-files" ] args: [ "--profile", "black", "--filter-files" ]
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 23.10.1 rev: 24.4.2
hooks: hooks:
- id: black - id: black
language_version: python3.11 language_version: python3.11
- repo: https://github.com/pre-commit/mirrors-mypy - repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1 rev: v1.10.0
hooks: hooks:
- id: mypy - id: mypy
files: ^(cloudevents/) files: ^(cloudevents/)

View File

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Changed
- Dropped Python3.7 from CI while its EOL.
## [1.10.1] ## [1.10.1]
### Fixed ### Fixed

View File

@ -1,6 +1,6 @@
[mypy] [mypy]
plugins = pydantic.mypy plugins = pydantic.mypy
python_version = 3.7 python_version = 3.8
pretty = True pretty = True
show_error_context = True show_error_context = True

View File

@ -65,7 +65,6 @@ if __name__ == "__main__":
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py{37,38,39,310,311},lint envlist = py{38,39,310,311,312},lint
skipsdist = True skipsdist = True
[testenv] [testenv]