Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ac70769

Browse filesBrowse files
committed
drop Python 3.4
1 parent 458525f commit ac70769
Copy full SHA for ac70769

File tree

3 files changed

+2
-95
lines changed
Filter options

3 files changed

+2
-95
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
-92Lines changed: 0 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,6 @@ matrix:
7373
- ENABLE_HEADLESS=0
7474
workspaces:
7575
use: brew_cache
76-
- os: osx
77-
osx_image: xcode8.3
78-
env:
79-
- MB_PYTHON_VERSION=3.4
80-
- ENABLE_CONTRIB=0
81-
- ENABLE_HEADLESS=0
82-
workspaces:
83-
use: brew_cache
8476
- os: osx
8577
osx_image: xcode8.3
8678
env:
@@ -116,14 +108,6 @@ matrix:
116108
- ENABLE_HEADLESS=1
117109
workspaces:
118110
use: brew_cache
119-
- os: osx
120-
osx_image: xcode8.3
121-
env:
122-
- MB_PYTHON_VERSION=3.4
123-
- ENABLE_CONTRIB=0
124-
- ENABLE_HEADLESS=1
125-
workspaces:
126-
use: brew_cache
127111
- os: osx
128112
osx_image: xcode8.3
129113
env:
@@ -159,14 +143,6 @@ matrix:
159143
- ENABLE_HEADLESS=0
160144
workspaces:
161145
use: brew_cache
162-
- os: osx
163-
osx_image: xcode8.3
164-
env:
165-
- MB_PYTHON_VERSION=3.4
166-
- ENABLE_CONTRIB=1
167-
- ENABLE_HEADLESS=0
168-
workspaces:
169-
use: brew_cache
170146
- os: osx
171147
osx_image: xcode8.3
172148
env:
@@ -202,14 +178,6 @@ matrix:
202178
- ENABLE_HEADLESS=1
203179
workspaces:
204180
use: brew_cache
205-
- os: osx
206-
osx_image: xcode8.3
207-
env:
208-
- MB_PYTHON_VERSION=3.4
209-
- ENABLE_CONTRIB=1
210-
- ENABLE_HEADLESS=1
211-
workspaces:
212-
use: brew_cache
213181
- os: osx
214182
osx_image: xcode8.3
215183
env:
@@ -269,21 +237,6 @@ matrix:
269237
- ENABLE_HEADLESS=0
270238
cache:
271239
directories: $HOME/.ccache
272-
- os: linux
273-
env:
274-
- MB_PYTHON_VERSION=3.4
275-
- ENABLE_CONTRIB=0
276-
- ENABLE_HEADLESS=0
277-
cache:
278-
directories: $HOME/.ccache
279-
- os: linux
280-
env:
281-
- MB_PYTHON_VERSION=3.4
282-
- PLAT=i686
283-
- ENABLE_CONTRIB=0
284-
- ENABLE_HEADLESS=0
285-
cache:
286-
directories: $HOME/.ccache
287240
- os: linux
288241
env:
289242
- MB_PYTHON_VERSION=3.5
@@ -367,21 +320,6 @@ matrix:
367320
- ENABLE_HEADLESS=1
368321
cache:
369322
directories: $HOME/.ccache
370-
- os: linux
371-
env:
372-
- MB_PYTHON_VERSION=3.4
373-
- ENABLE_CONTRIB=0
374-
- ENABLE_HEADLESS=1
375-
cache:
376-
directories: $HOME/.ccache
377-
- os: linux
378-
env:
379-
- MB_PYTHON_VERSION=3.4
380-
- PLAT=i686
381-
- ENABLE_CONTRIB=0
382-
- ENABLE_HEADLESS=1
383-
cache:
384-
directories: $HOME/.ccache
385323
- os: linux
386324
env:
387325
- MB_PYTHON_VERSION=3.5
@@ -465,21 +403,6 @@ matrix:
465403
- ENABLE_HEADLESS=0
466404
cache:
467405
directories: $HOME/.ccache
468-
- os: linux
469-
env:
470-
- MB_PYTHON_VERSION=3.4
471-
- ENABLE_CONTRIB=1
472-
- ENABLE_HEADLESS=0
473-
cache:
474-
directories: $HOME/.ccache
475-
- os: linux
476-
env:
477-
- MB_PYTHON_VERSION=3.4
478-
- PLAT=i686
479-
- ENABLE_CONTRIB=1
480-
- ENABLE_HEADLESS=0
481-
cache:
482-
directories: $HOME/.ccache
483406
- os: linux
484407
env:
485408
- MB_PYTHON_VERSION=3.5
@@ -564,21 +487,6 @@ matrix:
564487
- ENABLE_HEADLESS=1
565488
cache:
566489
directories: $HOME/.ccache
567-
- os: linux
568-
env:
569-
- MB_PYTHON_VERSION=3.4
570-
- ENABLE_CONTRIB=1
571-
- ENABLE_HEADLESS=1
572-
cache:
573-
directories: $HOME/.ccache
574-
- os: linux
575-
env:
576-
- MB_PYTHON_VERSION=3.4
577-
- PLAT=i686
578-
- ENABLE_CONTRIB=1
579-
- ENABLE_HEADLESS=1
580-
cache:
581-
directories: $HOME/.ccache
582490
- os: linux
583491
env:
584492
- MB_PYTHON_VERSION=3.5

‎README.md

Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,12 @@ The default ``manylinux`` images have been extended with some OpenCV dependencie
156156

157157
Python 2.7 is the only supported version in 2.x series. Python 2.7 support will be dropped in the end of 2019.
158158

159-
Python 3.x releases follow Numpy releases. For example Python 3.3 is no longer supported by Numpy so support for it has been dropped in ``opencv-python``, too.
159+
Python 3.x releases are provided for officially supported versions (not in EOL).
160160

161161
Currently, builds for following Python versions are provided:
162162

163163
- 2.7
164-
- 3.4
165164
- 3.5
166165
- 3.6
167166
- 3.7
167+
- 3.8

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ def main():
198198
'Programming Language :: Python :: 2',
199199
'Programming Language :: Python :: 2.7',
200200
'Programming Language :: Python :: 3',
201-
'Programming Language :: Python :: 3.4',
202201
'Programming Language :: Python :: 3.5',
203202
'Programming Language :: Python :: 3.6',
204203
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.