Skip to content

Commit 94c75ca

Browse files
committed
Update copyright
Signed-off-by: Aleksei Stepanov <[email protected]> (cherry picked from commit 4f4d4f9) Signed-off-by: Aleksei Stepanov <[email protected]>
1 parent c1e3ae1 commit 94c75ca

14 files changed

+14
-17
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ requires = [
55
"setuptools >= 21.0.0,!=24.0.0,!=34.0.0,!=34.0.1,!=34.0.2,!=34.0.3,!=34.1.0,!=34.1.1,!=34.2.0,!=34.3.0,!=34.3.1,!=34.3.2,!=36.2.0", # PSF/ZPL
66
"wheel",
77
]
8+
build-backend="setuptools.build_meta"
89

910
[tool.black]
1011
line-length = 120

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22

33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain
@@ -188,10 +188,6 @@ def get_simple_vars_from_src(
188188
try:
189189
if isinstance(node.value, ast_data):
190190
value = ast.literal_eval(node.value)
191-
elif isinstance(node.value, ast.Name) and isinstance( # NameConstant in python < 3.4
192-
node.value.ctx, ast.Load # Read constant
193-
):
194-
value = ast.literal_eval(node.value)
195191
else:
196192
continue
197193
except ValueError:

threaded/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_asynciotask.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_asynciotask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_asynciotask.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_base_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_threaded.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

threaded/_threaded.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2018 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
22
##
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may
44
# not use this file except in compliance with the License. You may obtain

0 commit comments

Comments
 (0)