Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/setup-python@v5
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- uses: snok/[email protected]
with:
# TODO: renovate
version: 1.8.2
version: 2.1.3
- run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4.3.0
uses: actions/checkout@v5
- name: 'Dependency Review'
uses: actions/[email protected]
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, 3.14]

steps:
- uses: actions/checkout@v4.3.0
- uses: actions/setup-python@v5
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: python -m pip install --upgrade pip tox tox-gh-actions
- run: tox
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<a name="4.0.1"></a>
## 4.0.2 (unreleased)

#### Bug Fixes

* Upper limits are incorrect in requires-python (#449)

## 4.0.1 (2024-05-15)

#### Internal
Expand Down
81 changes: 69 additions & 12 deletions poetry.lock

Large diffs are not rendered by default.

33 changes: 20 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
[tool.poetry]
[project]
name = "coveralls"
version = "4.0.1"
description = "Show coverage stats online via coveralls.io"
readme = "README.rst"

repository = "http://github.com/TheKevJames/coveralls-python"
authors = ["Kevin James <[email protected]>"]
authors = [{name="Kevin James", email="[email protected]"}]
license = "MIT"

packages = [
{ include = "coveralls" },
]

classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Testing",
Expand All @@ -21,17 +14,31 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.8"
dependencies = [
"coverage[toml] (>=5.0,<8.0,!=6.0.*,!=6.1,!=6.1.1)",
"docopt (>=0.6.1,<0.7.0)",
"requests (>=1.0.0,<3.0.0)"
]

[project.optional-dependencies]
pyyaml = ["pyyaml (>=3.10,<7.0)"]

[tool.poetry.urls]
[project.urls]
repository = "http://github.com/TheKevJames/coveralls-python"
Changelog = "https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md"
Docs = "https://coveralls-python.rtfd.io/"

[tool.poetry.scripts]
[project.scripts]
coveralls = "coveralls.cli:main"
python-coveralls = "coveralls.cli:main"

[tool.poetry]
packages = [
{ include = "coveralls" },
]

[tool.poetry.dependencies]
python = ">=3.8,<3.13"
coverage = { version = ">=5.0,<8.0,!=6.0.*,!=6.1,!=6.1.1", extras = ["toml"] }
docopt = ">=0.6.1,<0.7.0"
requests = ">=1.0.0,<3.0.0"
Expand Down Expand Up @@ -59,5 +66,5 @@ filterwarnings = [
]

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312,py3}-cov{5,6,7}-{default,pyyaml}
envlist = py{38,39,310,311,312,313,314,py3}-cov{5,6,7}-{default,pyyaml}

[gh-actions]
python =
Expand All @@ -8,12 +8,14 @@ python =
3.10: py310,upload
3.11: py311,upload
3.12: py312,upload
3.13: py313,upload
3.14: py314,upload

[testenv]
passenv = *
usedevelop = true
deps =
responses==0.25.0
responses==0.25.8
pytest==8.1.1
pyyaml: PyYAML>=3.10,<7.0
cov5: coverage[toml]>=5.0,<6.0
Expand Down