Skip to content

Commit ea676f5

Browse files
authored
🐛 Fix the python error appearing from python > 3.11 (#90)
<!-- Copyright (C) 2020-2022 Arm Limited or its affiliates and Contributors. All rights reserved. SPDX-License-Identifier: Apache-2.0 --> ### Description :bug: Fix the python error appearing from python > 3.11 ### Test Coverage <!-- Please put an `x` in the correct box e.g. `[x]` to indicate the testing coverage of this change. --> - [x] This change is covered by existing or additional automated tests. - [ ] Manual testing has been performed (and evidence provided) as automated testing was not feasible. - [ ] Additional tests are not required for this change (e.g. documentation update).
1 parent 4213c0f commit ea676f5

File tree

126 files changed

+155
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+155
-138
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
python_cache_macOS_path: ~/Library/Caches/pip
1111
python_cache_windows_path: ~\AppData\Local\pip\Cache
1212
python_cache_ubuntu_path: ~/.cache/pip
13-
pipenv_version: 2022.11.25
13+
pipenv_version: 2024.4.0
1414
python_version: '3.11'
1515

1616
jobs:
@@ -166,7 +166,7 @@ jobs:
166166
fail-fast: false
167167
matrix:
168168
os: [ubuntu-latest ] # FIXME add other platforms when much quicker macOS-latest, windows-latest]
169-
python-version: ["3.8", "3.9", "3.10", "3.11"]
169+
python-version: ["3.8", "3.9", "3.10", "3.11"] # FIXME Test on later python versions, "3.12", "3.13"]
170170
multi-platform:
171171
- ${{ github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' }}
172172
# include:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion

KNOWN_ISSUES.md

Lines changed: 1 addition & 1 deletion

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ continuous-delivery-scripts = {editable = true, path = "."}
2222
allow_prereleases = false
2323

2424
[packages]
25-
continuous-delivery-scripts = {editable = true, path = "."}
2625
types-toml = "*"
2726
types-setuptools = "*"
27+
continuous-delivery-scripts = {file = ".", editable = true}

README.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)