Skip to content

Commit 5b816b4

Browse files
committed
remove 3.6 from setup, codecov and docs
1 parent 6a41087 commit 5b816b4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.codecov.yml

-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ coverage:
1414
target: 80%
1515
threshold: 1%
1616
flags:
17-
- cpu-python3.6-unit-test
1817
- cpu-python3.7-unit-test
1918
- cuda-unit-test
2019
- directx-unit-test
@@ -23,7 +22,6 @@ coverage:
2322
target: 80%
2423
threshold: 1%
2524
flags:
26-
- cpu-python3.6-unit-test
2725
- cpu-python3.7-unit-test
2826
- cuda-unit-test
2927
- directx-unit-test

docs/getting-started/installation.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Here're the system requirements for control node.
2626
### Requirements
2727

2828
* Latest version of Linux, you're highly encouraged to use Ubuntu 18.04 or later.
29-
* [Python](https://www.python.org/) version 3.6 or later (which can be checked by running `python3 --version`).
29+
* [Python](https://www.python.org/) version 3.7 or later (which can be checked by running `python3 --version`).
3030
* [Pip](https://pip.pypa.io/en/stable/installing/) version 18.0 or later (which can be checked by running `python3 -m pip --version`).
3131

3232
:::note

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ def run(self):
131131
'Operating System :: POSIX',
132132
'Programming Language :: Python :: 3',
133133
'Programming Language :: Python :: 3 :: Only',
134-
'Programming Language :: Python :: 3.6',
135134
'Programming Language :: Python :: 3.7',
136135
'Programming Language :: Python :: 3.8',
137136
'Programming Language :: Python :: 3.9',
137+
'Programming Language :: Python :: 3.10',
138138
'Topic :: System :: Benchmark',
139139
'Topic :: System :: Clustering',
140140
'Topic :: System :: Hardware',
141141
],
142142
keywords='benchmark, AI systems',
143143
packages=find_packages(exclude=['tests']),
144-
python_requires='>=3.6, <4',
144+
python_requires='>=3.7, <4',
145145
use_scm_version={
146146
'local_scheme': 'node-and-date',
147147
'version_scheme': lambda _: superbench.__version__,

0 commit comments

Comments
 (0)