File tree Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 21
21
- uses : actions/checkout@v4
22
22
23
23
- name : Set up Python ${{ matrix.python-version }}
24
- uses : actions/setup-python@v4
24
+ uses : actions/setup-python@v5
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
27
36
36
runs-on : ubuntu-latest
37
37
steps :
38
38
- uses : actions/checkout@v4
39
- - uses : pre-commit/action@v3.0.0
39
+ - uses : pre-commit/action@v3.0.1
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v4
12
12
13
13
- name : Set up Python 3.12
14
- uses : actions/setup-python@v4
14
+ uses : actions/setup-python@v5
15
15
with :
16
16
python-version : 3.12
17
17
21
21
python -m build
22
22
23
23
- name : Publish to PyPI
24
- uses : pypa/gh-action-pypi-publish@v1.8.10
24
+ uses : pypa/gh-action-pypi-publish@v1.8.14
25
25
with :
26
26
password : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 33
33
- uses : actions/checkout@v4
34
34
35
35
- name : Set up Python ${{ matrix.python-version }}
36
- uses : actions/setup-python@v4
36
+ uses : actions/setup-python@v5
37
37
with :
38
38
python-version : ${{ matrix.python-version }}
39
39
Original file line number Diff line number Diff line change 9
9
hooks :
10
10
- id : flake8
11
11
- repo : https://github.com/psf/black.git
12
- rev : 24.3.0
12
+ rev : 24.4.2
13
13
hooks :
14
14
- id : black
15
15
- repo : https://github.com/pycqa/isort
16
16
rev : 5.13.2
17
17
hooks :
18
- - id : isort
18
+ - id : isort
Original file line number Diff line number Diff line change 6
6
license = "BSD" ,
7
7
description = "Collection of persistent (disk-based) and non-persistent (memory-based) queues" ,
8
8
long_description = open ("README.rst" ).read (),
9
+ long_description_content_type = "text/x-rst" ,
9
10
author = "Scrapy project" ,
10
11
author_email = "info@scrapy.org" ,
11
12
url = "https://github.com/scrapy/queuelib" ,
Original file line number Diff line number Diff line change @@ -18,23 +18,23 @@ commands =
18
18
basepython = python3
19
19
deps =
20
20
{[testenv]deps}
21
- pylint ==3.0.2
21
+ pylint ==3.1.0
22
22
commands =
23
23
pylint {posargs:queuelib setup.py}
24
24
25
25
[testenv:typing]
26
26
basepython = python3
27
27
deps =
28
- mypy ==1.7 .0
29
- pytest ==7.4.3
28
+ mypy ==1.10 .0
29
+ pytest ==8.2.0
30
30
commands =
31
31
mypy --strict {posargs:queuelib}
32
32
33
33
[testenv:twinecheck]
34
34
basepython = python3
35
35
deps =
36
- twine ==4 .0.2
37
- build ==1.0.3
36
+ twine ==5 .0.0
37
+ build ==1.2.1
38
38
commands =
39
39
python -m build --sdist
40
40
twine check dist/*
You can’t perform that action at this time.
0 commit comments