Skip to content

Commit 974edcd

Browse files
committed
Update tool versions.
1 parent b61206d commit 974edcd

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

@@ -36,4 +36,4 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- uses: actions/checkout@v4
39-
- uses: pre-commit/action@v3.0.0
39+
- uses: pre-commit/action@v3.0.1

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212

1313
- name: Set up Python 3.12
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: 3.12
1717

@@ -21,6 +21,6 @@ jobs:
2121
python -m build
2222
2323
- name: Publish to PyPI
24-
uses: pypa/gh-action-pypi-publish@v1.8.10
24+
uses: pypa/gh-action-pypi-publish@v1.8.14
2525
with:
2626
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434

3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v5
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ repos:
99
hooks:
1010
- id: flake8
1111
- repo: https://github.com/psf/black.git
12-
rev: 24.3.0
12+
rev: 24.4.2
1313
hooks:
1414
- id: black
1515
- repo: https://github.com/pycqa/isort
1616
rev: 5.13.2
1717
hooks:
18-
- id: isort
18+
- id: isort

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
license="BSD",
77
description="Collection of persistent (disk-based) and non-persistent (memory-based) queues",
88
long_description=open("README.rst").read(),
9+
long_description_content_type="text/x-rst",
910
author="Scrapy project",
1011
author_email="info@scrapy.org",
1112
url="https://github.com/scrapy/queuelib",

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ commands =
1818
basepython = python3
1919
deps =
2020
{[testenv]deps}
21-
pylint==3.0.2
21+
pylint==3.1.0
2222
commands =
2323
pylint {posargs:queuelib setup.py}
2424

2525
[testenv:typing]
2626
basepython = python3
2727
deps =
28-
mypy==1.7.0
29-
pytest==7.4.3
28+
mypy==1.10.0
29+
pytest==8.2.0
3030
commands =
3131
mypy --strict {posargs:queuelib}
3232

3333
[testenv:twinecheck]
3434
basepython = python3
3535
deps =
36-
twine==4.0.2
37-
build==1.0.3
36+
twine==5.0.0
37+
build==1.2.1
3838
commands =
3939
python -m build --sdist
4040
twine check dist/*

0 commit comments

Comments
 (0)