Skip to content

Commit 10d1724

Browse files
authored
Merge pull request #19 from pomponchik/develop
0.0.17
2 parents f625f02 + c6b1bd9 commit 10d1724

File tree

5 files changed

+16
-64
lines changed

5 files changed

+16
-64
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414

1515
steps:
1616
- uses: actions/checkout@v2
1717

1818
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v3
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

@@ -38,8 +38,8 @@ jobs:
3838

3939
- name: Run ruff
4040
shell: bash
41-
run: ruff locklib
41+
run: ruff check locklib
4242

4343
- name: Run ruff for tests
4444
shell: bash
45-
run: ruff tests
45+
run: ruff check tests

.github/workflows/tests_and_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest, macos-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414

1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/tests_and_coverage_old.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = 'locklib'
7-
version = '0.0.16'
7+
version = '0.0.17'
88
authors = [
99
{ name='Evgeniy Blinov', email='zheni-b@yandex.ru' },
1010
]
1111
description = 'When there are not enough locks from the standard library'
1212
readme = 'README.md'
13-
requires-python = '>=3.7'
13+
requires-python = '>=3.8'
1414
classifiers = [
1515
'Operating System :: MacOS :: MacOS X',
1616
'Operating System :: Microsoft :: Windows',
1717
'Operating System :: POSIX',
1818
'Operating System :: POSIX :: Linux',
19-
'Programming Language :: Python :: 3.7',
2019
'Programming Language :: Python :: 3.8',
2120
'Programming Language :: Python :: 3.9',
2221
'Programming Language :: Python :: 3.10',
2322
'Programming Language :: Python :: 3.11',
2423
'Programming Language :: Python :: 3.12',
24+
'Programming Language :: Python :: 3.13',
2525
'License :: OSI Approved :: MIT License',
2626
'Topic :: Software Development :: Libraries',
2727
'Intended Audience :: Developers',

requirements_dev.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
pytest==7.4.3
2-
pytest-timeout==2.2.0
3-
coverage==7.2.7
4-
twine==4.0.2
2+
pytest-timeout==2.3.1
3+
coverage==7.6.1
4+
twine==6.1.0
55
wheel==0.41.2
6-
build==0.9.0
7-
ruff==0.0.290
8-
mypy==1.4.1
9-
mutmut==2.4.4
10-
full_match==0.0.1
6+
build==1.2.2.post1
7+
ruff==0.9.9
8+
mypy==1.14.1
9+
mutmut==3.2.3
10+
full_match==0.0.2

0 commit comments

Comments
 (0)