Skip to content

Commit

Permalink
New min version: 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoH2O1999 committed Dec 11, 2024
1 parent 52c0e16 commit afe08c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/create_python_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
splits = short_tag.split('.')
major = int(splits[0])
minor = int(splits[1])
if major == 3 and minor >= 7 and short_tag not in json_dict['python-version']:
if major == 3 and minor >= 8 and short_tag not in json_dict['python-version']:
json_dict['python-version'].append(short_tag)

with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const toolName = 'Python';

const testedLabels = ['ubuntu-24.04', 'windows-2022', 'macos-14'];

const minSupportedVersion = '3.7.0-0';
const minSupportedVersion = '3.8.0-0';

export {testedLabels, toolName, minSupportedVersion};

Expand Down

0 comments on commit afe08c8

Please sign in to comment.