Skip to content

Commit 6428ed8

Browse files
committed
Maintenance: update type annotations, migrate build system to the newer version
1 parent 7217e7c commit 6428ed8

23 files changed

+286
-342
lines changed

.github/workflows/pythonpackage.yml

+17-18
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
PEP8:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3.2.0
1010
- name: Set up Python
11-
uses: actions/setup-python@v2
11+
uses: actions/setup-python@v4.3.1
1212
with:
1313
python-version: '3.x'
1414
- name: Install dependencies
@@ -22,9 +22,9 @@ jobs:
2222
PyLint:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3.2.0
2626
- name: Set up Python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v4.3.1
2828
with:
2929
python-version: '3.7'
3030
- name: Install dependencies
@@ -42,9 +42,9 @@ jobs:
4242
MyPy:
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v2
45+
- uses: actions/checkout@v3.2.0
4646
- name: Set up Python
47-
uses: actions/setup-python@v2
47+
uses: actions/setup-python@v4.3.1
4848
with:
4949
python-version: '3.x'
5050
- name: Install dependencies
@@ -62,9 +62,9 @@ jobs:
6262
Black:
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@v2
65+
- uses: actions/checkout@v3.2.0
6666
- name: Set up Python
67-
uses: actions/setup-python@v2
67+
uses: actions/setup-python@v4.3.1
6868
with:
6969
python-version: '3.x'
7070
- name: Install dependencies
@@ -82,12 +82,12 @@ jobs:
8282
max-parallel: 6
8383
matrix:
8484
os: ["ubuntu-latest", "windows-latest"]
85-
python-version: ["3.7", "3.8", "3.9", "3.10"]
85+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
8686

8787
steps:
88-
- uses: actions/checkout@v2
88+
- uses: actions/checkout@v3.2.0
8989
- name: Set up Python ${{ matrix.python-version }}
90-
uses: actions/setup-python@v2
90+
uses: actions/setup-python@v4.3.1
9191
with:
9292
python-version: ${{ matrix.python-version }}
9393
- name: Install dependencies
@@ -97,7 +97,7 @@ jobs:
9797
pip install --upgrade -r pytest_requirements.txt
9898
- name: Build package and install develop
9999
run: |
100-
python setup.py develop -v clean
100+
pip install -e .
101101
- name: Test with pytest
102102
run: |
103103
py.test --cov-report= --cov=advanced_descriptors test
@@ -108,19 +108,18 @@ jobs:
108108
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
109109
runs-on: ubuntu-latest
110110
steps:
111-
- uses: actions/checkout@v2
111+
- uses: actions/checkout@v3.2.0
112112
- name: Set up Python
113-
uses: actions/setup-python@v2
113+
uses: actions/setup-python@v4.3.1
114114
with:
115115
python-version: '3.x'
116116
- name: Install dependencies
117117
run: |
118-
python -m pip install --upgrade pip wheel
119-
pip install --upgrade -r CI_REQUIREMENTS.txt
120-
pip install --upgrade twine
118+
python -m pip install --upgrade pip
119+
pip install --upgrade twine build
121120
- name: Build package
122121
run: |
123-
python setup.py sdist bdist_wheel clean
122+
python -m build
124123
- name: Deploy
125124
env:
126125
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

.pre-commit-config.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.0.1
3+
rev: v4.3.0
44
hooks:
55
- id: check-yaml
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- id: mixed-line-ending
99

1010
- repo: https://github.com/pycqa/isort
11-
rev: 5.9.3
11+
rev: 5.11.2
1212
hooks:
1313
- id: isort
1414
name: isort (python)
@@ -20,15 +20,14 @@ repos:
2020
types: [pyi]
2121

2222
- repo: https://github.com/psf/black
23-
rev: 21.10b0
23+
rev: 22.12.0
2424
hooks:
2525
- id: black
2626
# It is recommended to specify the latest version of Python
2727
# supported by your project here, or alternatively use
2828
# pre-commit's default_language_version, see
2929
# https://pre-commit.com/#top_level-default_language_version
30-
language_version: python3.7
31-
always_run: true
30+
language_version: python3.9
3231

3332
- repo: https://github.com/pre-commit/pygrep-hooks
3433
rev: v1.9.0 # Use the ref you want to point at
@@ -38,8 +37,8 @@ repos:
3837
- id: rst-directive-colons
3938
- id: rst-inline-touching-normal
4039

41-
- repo: https://gitlab.com/pycqa/flake8
42-
rev: 3.9.2
40+
- repo: https://github.com/PyCQA/flake8
41+
rev: 6.0.0
4342
hooks:
4443
- id: flake8
4544
additional_dependencies: [flake8-bugbear, pep8-naming, flake8-docstrings]

.pylintrc

+5-12
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ extension-pkg-whitelist=lxml.etree
77

88
# Add files or directories to the blacklist. They should be base names, not
99
# paths.
10-
ignore=CVS,.git
10+
ignore=CVS,.git,_version.py
1111

1212
# Add files or directories matching the regex patterns to the blacklist. The
1313
# regex matches against base names, not paths.
14-
ignore-patterns=_version.py
14+
ignore-patterns=
1515

1616
# Python code to execute, usually for sys.path manipulation such as
1717
# pygtk.require().
@@ -28,12 +28,13 @@ limit-inference-results=100
2828

2929
# List of plugins (as comma separated values of python modules names) to load,
3030
# usually to register additional checkers.
31-
load-plugins=pylint.extensions.docparams,
32-
pylint.extensions.docstyle,
31+
load-plugins=pylint.extensions.docstyle,
32+
pylint.extensions.docparams,
3333
pylint.extensions.overlapping_exceptions,
3434
pylint.extensions.emptystring,
3535
pylint.extensions.comparetozero,
3636
pylint.extensions.check_elif,
37+
pylint.extensions.for_any_all,
3738
pylint.extensions.code_style,
3839
pylint.extensions.redefined_variable_type,
3940
pylint.extensions.typing,
@@ -85,7 +86,6 @@ disable=locally-disabled,
8586
too-many-statements,
8687
too-many-instance-attributes,
8788
too-many-lines,
88-
misplaced-comparison-constant,
8989
broad-except,
9090
logging-fstring-interpolation,
9191
logging-format-interpolation
@@ -299,13 +299,6 @@ max-line-length=120
299299
# Maximum number of lines in a module.
300300
max-module-lines=1000
301301

302-
# List of optional constructs for which whitespace checking is disabled. `dict-
303-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
304-
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
305-
# `empty-line` allows space-only lines.
306-
no-space-check=trailing-comma,
307-
dict-separator
308-
309302
# Allow the body of a class to be on the same line as the declaration if body
310303
# contains single statement.
311304
single-line-class-stmt=no

.readthedocs.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Required
2+
version: 2
3+
4+
# Set the version of Python and other tools you might need
5+
build:
6+
os: ubuntu-22.04
7+
tools:
8+
python: "3"
9+
# You can also specify other tool versions:
10+
# nodejs: "16"
11+
# rust: "1.55"
12+
# golang: "1.17"
13+
14+
# Build documentation in the docs/ directory with Sphinx
15+
sphinx:
16+
configuration: doc/source/conf.py
17+
18+
# If using Sphinx, optionally build your docs in additional formats such as PDF
19+
# formats:
20+
# - pdf
21+
22+
# Optionally declare the Python requirements required to build your docs
23+
python:
24+
install:
25+
- method: pip
26+
path: .
27+
- requirements: CI_REQUIREMENTS.txt

CI_REQUIREMENTS.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
-r requirements.txt
2+
setuptools_scm

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2017-2020 Alexey Stepanov aka penguinolog
189+
Copyright 2016-2022 Alexey Stepanov aka penguinolog
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

MANIFEST.in

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include *.rst LICENSE requirements.txt
1+
include *.rst LICENSE requirements.txt classifiers.txt
22
global-include *.pyx *.pxd
33
global-exclude *.c
44
exclude Makefile
@@ -9,5 +9,6 @@ exclude .gitignore .dockerignore
99
prune test
1010
prune .github
1111
prune .azure_pipelines
12-
prune docs
12+
prune .tox
13+
prune doc
1314
exclude CODEOWNERS CODE_OF_CONDUCT.md _config.yml

advanced_descriptors/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 - 2021 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2022 Alexey Stepanov aka penguinolog
22
# Licensed under the Apache License, Version 2.0 (the "License"); you may
33
# not use this file except in compliance with the License. You may obtain
44
# a copy of the License at

advanced_descriptors/advanced_property.py

+19-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
# Copyright 2016 - 2021 Alexey Stepanov aka penguinolog
3+
# Copyright 2016 - 2022 Alexey Stepanov aka penguinolog
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may
55
# not use this file except in compliance with the License. You may obtain
66
# a copy of the License at
@@ -20,6 +20,10 @@
2020
# Standard Library
2121
import typing
2222

23+
if typing.TYPE_CHECKING:
24+
# Standard Library
25+
from collections.abc import Callable
26+
2327
__all__ = ("AdvancedProperty",)
2428

2529
_OwnerClassT = typing.TypeVar("_OwnerClassT")
@@ -121,27 +125,27 @@ class AdvancedProperty(property, typing.Generic[_OwnerClassT, _ReturnT, _ClassRe
121125

122126
def __init__(
123127
self,
124-
fget: typing.Callable[[_OwnerClassT], _ReturnT] | None = None,
125-
fset: typing.Callable[[_OwnerClassT, _ReturnT], None] | None = None,
126-
fdel: typing.Callable[[_OwnerClassT], None] | None = None,
127-
fcget: typing.Callable[[type[_OwnerClassT]], _ClassReturnT] | None = None,
128+
fget: Callable[[_OwnerClassT], _ReturnT] | None = None,
129+
fset: Callable[[_OwnerClassT, _ReturnT], None] | None = None,
130+
fdel: Callable[[_OwnerClassT], None] | None = None,
131+
fcget: Callable[[type[_OwnerClassT]], _ClassReturnT] | None = None,
128132
) -> None:
129133
"""Advanced property main entry point.
130134
131135
:param fget: normal getter.
132-
:type fget: typing.Callable[[typing.Any, ], typing.Any] | None
136+
:type fget: Callable[[typing.Any, ], typing.Any] | None
133137
:param fset: normal setter.
134-
:type fset: typing.Callable[[typing.Any, typing.Any], None] | None
138+
:type fset: Callable[[typing.Any, typing.Any], None] | None
135139
:param fdel: normal deleter.
136-
:type fdel: typing.Callable[[typing.Any, ], None] | None
140+
:type fdel: Callable[[typing.Any, ], None] | None
137141
:param fcget: class getter. Used as normal, if normal is None.
138-
:type fcget: typing.Callable[[typing.Any, ], typing.Any] | None
142+
:type fcget: Callable[[typing.Any, ], typing.Any] | None
139143
140144
.. note:: doc argument is not supported due to class wide getter usage.
141145
"""
142146
super().__init__(fget=fget, fset=fset, fdel=fdel)
143147

144-
self.__fcget: typing.Callable[[type[_OwnerClassT]], _ClassReturnT] | None = fcget
148+
self.__fcget: Callable[[type[_OwnerClassT]], _ClassReturnT] | None = fcget
145149

146150
@typing.overload
147151
def __get__(self, instance: None, owner: type[_OwnerClassT]) -> _ClassReturnT:
@@ -159,7 +163,7 @@ def __get__(
159163
"""Get descriptor.
160164
161165
:param instance: Owner class instance. Filled only if instance created, else None.
162-
:type instance: typing.Optional[owner]
166+
:type instance: owner | None
163167
:param owner: Owner class for property.
164168
:return: getter call result if getter presents
165169
:rtype: typing.Any
@@ -172,22 +176,22 @@ def __get__(
172176
return super().__get__(instance, owner) # type: ignore[no-any-return]
173177

174178
@property
175-
def fcget(self) -> typing.Callable[[type[_OwnerClassT]], _ClassReturnT] | None:
179+
def fcget(self) -> Callable[[type[_OwnerClassT]], _ClassReturnT] | None:
176180
"""Class wide getter instance.
177181
178182
:return: Class wide getter instance
179-
:rtype: typing.Callable[[typing.Any, ], typing.Any] | None
183+
:rtype: Callable[[typing.Any, ], typing.Any] | None
180184
"""
181185
return self.__fcget
182186

183187
def cgetter(
184188
self,
185-
fcget: typing.Callable[[type[_OwnerClassT]], _ClassReturnT] | None,
189+
fcget: Callable[[type[_OwnerClassT]], _ClassReturnT] | None,
186190
) -> AdvancedProperty[_OwnerClassT, _ReturnT, _ClassReturnT]:
187191
"""Descriptor to change the class wide getter on a property.
188192
189193
:param fcget: new class-wide getter.
190-
:type fcget: typing.Callable[[typing.Any, ], typing.Any] | None
194+
:type fcget: Callable[[typing.Any, ], typing.Any] | None
191195
:return: AdvancedProperty
192196
:rtype: AdvancedProperty
193197
"""

advanced_descriptors/log_on_access.py

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
# Copyright 2016 - 2021 Alexey Stepanov aka penguinolog
3+
# Copyright 2016 - 2022 Alexey Stepanov aka penguinolog
44
# Licensed under the Apache License, Version 2.0 (the "License"); you may
55
# not use this file except in compliance with the License. You may obtain
66
# a copy of the License at
@@ -28,6 +28,10 @@
2828
import typing
2929
import warnings
3030

31+
if typing.TYPE_CHECKING:
32+
# Standard Library
33+
from collections.abc import Callable
34+
3135
_LOGGER: logging.Logger = logging.getLogger(__name__)
3236
_CURRENT_FILE = os.path.abspath(__file__)
3337
_OwnerT = typing.TypeVar("_OwnerT")
@@ -45,9 +49,9 @@ class LogOnAccess(property, typing.Generic[_OwnerT, _ReturnT]):
4549

4650
def __init__(
4751
self,
48-
fget: typing.Callable[[_OwnerT], _ReturnT] | None = None,
49-
fset: typing.Callable[[_OwnerT, _ReturnT], None] | None = None,
50-
fdel: typing.Callable[[_OwnerT], None] | None = None,
52+
fget: Callable[[_OwnerT], _ReturnT] | None = None,
53+
fset: Callable[[_OwnerT, _ReturnT], None] | None = None,
54+
fdel: Callable[[_OwnerT], None] | None = None,
5155
doc: str | None = None,
5256
*,
5357
# Extended settings start
@@ -63,11 +67,11 @@ def __init__(
6367
"""Advanced property main entry point.
6468
6569
:param fget: normal getter.
66-
:type fget: typing.Callable[[_OwnerT], _ReturnT] | None
70+
:type fget: Callable[[_OwnerT], _ReturnT] | None
6771
:param fset: normal setter.
68-
:type fset: typing.Callable[[_OwnerT, _ReturnT], None] | None
72+
:type fset: Callable[[_OwnerT, _ReturnT], None] | None
6973
:param fdel: normal deleter.
70-
:type fdel: typing.Callable[[_OwnerT], None] | None
74+
:type fdel: Callable[[_OwnerT], None] | None
7175
:param doc: docstring override
7276
:type doc: str | None
7377
:param logger: logger instance or name to use as override

0 commit comments

Comments
 (0)