Skip to content

Commit 59bff0b

Browse files
bibhabasumohapatravfdev-5sdesrozis
authored
python 3.6 support removed due to EOL, 2021-12-23 (#2365)
* this removes python 3.6 support due to EOL, 2021-12-23 * added py39 * Update pyproject.toml Co-authored-by: vfdev <vfdev.5@gmail.com> * adds python 3.9 * Update pytorch-version-tests.yml * black no support py39 Co-authored-by: vfdev <vfdev.5@gmail.com> Co-authored-by: Sylvain Desroziers <sylvain.desroziers@gmail.com>
1 parent eba40ed commit 59bff0b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/pytorch-version-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,19 @@ jobs:
1313
max-parallel: 10
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8]
16+
python-version: [3.7, 3.8, 3.9]
1717
pytorch-version: [1.9.1, 1.8.1, 1.7.1, 1.6.0, 1.5.1, 1.4.0, 1.3.1]
1818
exclude:
1919
- pytorch-version: 1.3.1
2020
python-version: 3.8
21+
- pytorch-version: 1.3.1
22+
python-version: 3.9
23+
- pytorch-version: 1.4.0
24+
python-version: 3.9
25+
- pytorch-version: 1.5.1
26+
python-version: 3.9
27+
- pytorch-version: 1.6.0
28+
python-version: 3.9
2129

2230
steps:
2331
- uses: actions/checkout@v2

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
os: [ubuntu-latest]
39-
python-version: [3.6, 3.7, 3.8, 3.9]
39+
python-version: [3.7, 3.8, 3.9]
4040
pytorch-channel: [pytorch, pytorch-nightly]
4141
include:
4242
# includes a single build on windows

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 120
3-
target-version = ['py36', 'py37', 'py38']
3+
target-version = ['py37', 'py38']
44
include = '\.pyi?$'
55
exclude = '''
66

0 commit comments

Comments
 (0)