Skip to content

Commit

Permalink
Merge pull request #200 from umr-lops/workflow_update3
Browse files Browse the repository at this point in the history
exclude python3.12 from the matrix
  • Loading branch information
agrouaze authored Feb 20, 2024
2 parents 0c61383 + 912eeef commit 51803cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/dynamic_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
python_versions = json.loads(f.read().decode('utf-8'))

now = datetime.datetime.now().strftime('%Y-%m-%d')
python_supported_versions = [ v['cycle'] for v in python_versions if v['eol'] > now and v['cycle'] not in ['3.7','3.8'] ]
python_supported_versions = [ v['cycle'] for v in python_versions if v['eol'] > now and v['cycle'] not in ['3.7','3.8','3.12'] ]

python_default_version = python_supported_versions[1]

Expand Down

0 comments on commit 51803cb

Please sign in to comment.