Skip to content

Commit ae5c885

Browse files
committed
fix requirements issues, sync imports headers, fix copyright
Signed-off-by: Aleksei Stepanov <[email protected]>
1 parent 4c24750 commit ae5c885

16 files changed

+19
-21
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install:
66
- &upgrade_python_toolset pip install --upgrade pip setuptools wheel
77
- &install_test_deps pip install --upgrade -r pytest_requirements.txt
88
- &install_deps pip install -r CI_REQUIREMENTS.txt
9-
- pip install --upgrade pytest-cov coveralls
9+
- pip install --upgrade coveralls
1010

1111
_python:
1212
- &python36

CI_REQUIREMENTS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
typing >= 3.6 ; python_version < "3.8"
1+
-r requirements.txt

build_requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
Cython; platform_python_implementation == "CPython"
2-
wheel==0.31.1
32
-r CI_REQUIREMENTS.txt
4-
-r requirements.txt

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ force_single_line = true
2020

2121
import_heading_stdlib = "Standard Library"
2222
import_heading_thirdparty = "External Dependencies"
23-
import_heading_firstparty = "Threaded Implementation"
23+
import_heading_firstparty = "Package Implementation"
2424
import_heading_localfolder = "Local Implementation"
2525

2626
[tool.coverage.run]

threaded/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2020 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2020 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
@@ -14,7 +14,7 @@
1414

1515
"""AsyncIOTask implementation."""
1616

17-
# Threaded Implementation
17+
# Package Implementation
1818
from threaded cimport class_decorator
1919

2020

threaded/_asynciotask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2020 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2020 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
@@ -19,7 +19,7 @@ import asyncio
1919
import functools
2020
import typing
2121

22-
# Threaded Implementation
22+
# Package Implementation
2323
from threaded cimport class_decorator
2424

2525

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 - 2019 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2020 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017 - 2019 Alexey Stepanov aka penguinolog
1+
# Copyright 2017 - 2020 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
@@ -17,7 +17,7 @@
1717
Asyncio is supported
1818
"""
1919

20-
# Threaded Implementation
20+
# Package Implementation
2121
from threaded cimport class_decorator
2222

2323

0 commit comments

Comments
 (0)