Skip to content

Commit 0f39125

Browse files
committed
python 3.8 related changes
Signed-off-by: Aleksei Stepanov <[email protected]>
1 parent 3bf2e2f commit 0f39125

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ _python:
1616
- &python37
1717
name: "Python 3.7"
1818
python: "3.7"
19+
- &python38
20+
name: "Python 3.8"
21+
python: "3.8"
1922

2023
_helpers:
2124
- &install_cython pip install --upgrade Cython
@@ -106,11 +109,15 @@ jobs:
106109
<<: *python36
107110
- stage: test
108111
<<: *python37
112+
- stage: test
113+
<<: *python38
109114

110115
- <<: *test_cythonized
111116
<<: *python36
112117
- <<: *test_cythonized
113118
<<: *python37
119+
- <<: *test_cythonized
120+
<<: *python38
114121

115122
- stage: deploy
116123
# This prevents job from appearing in test plan unless commit is tagged:

test/test_pooled.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ def test():
4444

4545
def test_thread_pooled_config(self):
4646
thread_pooled = threaded.threadpooled()
47-
48-
self.assertEqual(thread_pooled.executor.max_workers, (cpu_count() or 1) * 5)
49-
5047
thread_pooled.configure(max_workers=2)
5148

5249
@thread_pooled

0 commit comments

Comments
 (0)