Skip to content

Commit c7b38ad

Browse files
committed
UPD: required python >=3.9 for type annotations
1 parent d518d4e commit c7b38ad

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
max-parallel: 2
1313
matrix:
1414
platform: [ ubuntu-latest, macos-latest, windows-latest ]
15-
python-version: [ 3.6, 3.9 ]
15+
python-version: [ 3.9 ]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
author_email='wojciech.wentland@int.pl',
2020
description='PyInstaller + Docker = CrossInstaller',
2121
long_description_content_type='text/markdown',
22-
python_requires='>=3.6',
22+
python_requires='>=3.9',
2323
zip_safe=False, # don't use eggs
2424
long_description=long_desc,
2525

@@ -42,9 +42,6 @@
4242
'Programming Language :: Python',
4343
'Programming Language :: Python :: 3',
4444
'Programming Language :: Python :: 3 :: Only',
45-
'Programming Language :: Python :: 3.6',
46-
'Programming Language :: Python :: 3.7',
47-
'Programming Language :: Python :: 3.8',
4845
'Programming Language :: Python :: 3.9',
4946

5047
'Programming Language :: Python :: Implementation :: CPython',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
[tox]
77

88
envlist =
9-
{linux, darwin, windows}-{py36, py39}-{build}
9+
{linux, darwin, windows}-{py39, py310}-{build}
1010
{linux}-{py39}-{lint}
1111
{linux}-{py39}-{safety}
1212
{linux}-{py39}-{metric}
1313
{linux}-{py39}-{release}
1414

1515
[gh-actions]
1616
python =
17-
3.6: py36
1817
3.9: py39
18+
3.10: py310
1919

2020
[gh-actions:env]
2121
PLATFORM =

0 commit comments

Comments
 (0)