Skip to content
Snippets Groups Projects
Unverified Commit 136b4531 authored by Mashiro's avatar Mashiro Committed by GitHub
Browse files

Deprecate the support for python3.6 (#863)

* prefer install binray for opencv

* clean the code

* rename BinaryPeferredPackageIndex

* adjust minimum version of python

* clean the code

* remove duplicated CI
parent 0ae16a98
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,7 @@ workflows: ...@@ -163,7 +163,7 @@ workflows:
name: minimum_version_cpu name: minimum_version_cpu
torch: 1.6.0 torch: 1.6.0
torchvision: 0.7.0 torchvision: 0.7.0
python: 3.6.9 # The lowest python 3.6.x version available on CircleCI images python: 3.7.4
requires: requires:
- lint - lint
- build_cpu: - build_cpu:
......
...@@ -24,7 +24,7 @@ jobs: ...@@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
strategy: strategy:
matrix: matrix:
python-version: [3.6, 3.8, 3.9] python-version: [3.8, 3.9]
torch: [1.8.1] torch: [1.8.1]
include: include:
- torch: 1.8.1 - torch: 1.8.1
......
...@@ -137,14 +137,13 @@ setup( ...@@ -137,14 +137,13 @@ setup(
'License :: OSI Approved :: Apache Software License', 'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Topic :: Utilities', 'Topic :: Utilities',
], ],
python_requires='>=3.6', python_requires='>=3.7',
install_requires=install_requires, install_requires=install_requires,
extras_require={ extras_require={
'all': parse_requirements('requirements.txt'), 'all': parse_requirements('requirements.txt'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment