Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,28 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.7", "pypy-3.8", "pypy-3.9", "pypy-3.10"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.10"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/checkout@v5

- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.18"
python-version: ${{ matrix.python-version }}

- name: Set up Python ${{ matrix.python-version }}
run: uv python install

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -q flake8
uv sync

- name: Flake8 static code analysis
- name: Ruff linter and static code analysis
run: |
flake8 pycksum
uvx ruff@latest check

- name: Run tests
run: |
python setup.py test
uv run python -m unittest
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include README.rst setup.py
include README.rst
include LICENSE
recursive-include pycksum *.py
include ext/*.pyx
include ext/_pycksum.c
include ext/_pycksum.h
17 changes: 0 additions & 17 deletions cython_build_ext.py

This file was deleted.

Loading