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
24 changes: 11 additions & 13 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,28 @@ jobs:
fail-fast: false

matrix:
python: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
python: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]

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

- name: Setup python${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python }}"
- name: Setup uv
uses: astral-sh/setup-uv@v5

- name: Install project
run: python -m pip install -Ue .
- name: Setup python${{ matrix.python }}
run: uv python install ${{ matrix.python }}

- name: Install pytest
run: python -m pip install pytest coveralls pytest-cov
- name: Install dependencies
run: uv sync --dev

- name: pytest ${{ matrix.toxenv }}
run: pytest --cov=debx --cov-report=term-missing
- name: pytest
run: uv run pytest --cov=debx --cov-report=term-missing
env:
FORCE_COLOR: 1

- name: Coveralls
run: coveralls
run: uv run coveralls
env:
COVERALLS_PARALLEL: 'true'
COVERALLS_SERVICE_NAME: github
Expand Down
21 changes: 14 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,33 +1,40 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "debx"
version = "0.2.9"
version = "0.2.10"
description = "Minimal Python library to programmatically construct Debian .deb packages"
readme = "README.md"
authors = [
{ name = "Dmitry Orlov", email = "me@mosquito.su" }
]
license = "MIT"
license-files = ["COPYING"]
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed",
]

dependencies = []

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[dependency-groups]
dev = [
"coveralls>=4.0.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]

[project.urls]
"Homepage" = "https://github.com/mosquito/debx"
"Repository" = "https://github.com/mosquito/debx"
Expand Down
Loading