Skip to content

Commit 66875c8

Browse files
authored
Add support for python 3.11 (#183)
1 parent 2b5569e commit 66875c8

File tree

4 files changed

+352
-402
lines changed

4 files changed

+352
-402
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Test
22

3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
37
on:
48
workflow_dispatch:
59
push:
@@ -12,7 +16,10 @@ jobs:
1216
if: github.repository_owner == 'viamrobotics'
1317
runs-on: [self-hosted, x64]
1418
container:
15-
image: ghcr.io/viamrobotics/canon:amd64
19+
image: python:${{ matrix.python-version }}
20+
strategy:
21+
matrix:
22+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1623
steps:
1724
- name: Checkout Push/Workflow Dispatch
1825
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'

doc/dependency_decisions.yml

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,63 @@
11
---
22
- - :permit
33
- Apache 2.0
4-
- :who:
5-
:why:
4+
- :who:
5+
:why:
66
:versions: []
77
:when: 2022-08-12 14:31:48.226163463 Z
88
- - :permit
99
- MIT
10-
- :who:
11-
:why:
10+
- :who:
11+
:why:
1212
:versions: []
1313
:when: 2022-08-12 14:31:52.953331422 Z
1414
- - :permit
1515
- BSD-3-Clause
16-
- :who:
17-
:why:
16+
- :who:
17+
:why:
1818
:versions: []
1919
:when: 2022-08-15 12:18:01.493210046 Z
2020
- - :permit
2121
- BSD
22-
- :who:
23-
:why:
22+
- :who:
23+
:why:
2424
:versions: []
2525
:when: 2022-08-15 12:18:10.367754569 Z
2626
- - :permit
2727
- Simplified BSD
28-
- :who:
29-
:why:
28+
- :who:
29+
:why:
3030
:versions: []
3131
:when: 2022-08-15 12:18:30.799597748 Z
3232
- - :permit
3333
- ISC License (ISCL)
34-
- :who:
35-
:why:
34+
- :who:
35+
:why:
3636
:versions: []
3737
:when: 2022-08-15 12:30:07.716433134 Z
3838
- - :license
3939
- matplotlib-inline
4040
- BSD-3-Clause
41-
- :who:
41+
- :who:
4242
:why: 'TODO(RSDK-583): why is license finder unable to detect this license automatically?'
4343
:license_links: https://github.com/ipython/matplotlib-inline/blob/fbf0ab8f2d81993ff8e319a003f58896c77f2443/LICENSE
4444
:versions: []
4545
:when: 2022-09-01 18:14:44.253208011 Z
4646
- - :permit
4747
- Historical Permission Notice and Disclaimer (HPND)
48-
- :who:
49-
:why:
48+
- :who:
49+
:why:
5050
:versions: []
5151
:when: 2022-09-16 15:36:22.534210576 Z
5252
- - :permit
5353
- Python Software Foundation License
54-
- :who:
55-
:why:
54+
- :who:
55+
:why:
5656
:versions: []
5757
:when: 2022-09-16 15:36:35.544888808 Z
58+
- - :approve
59+
- protobuf
60+
- :who:
61+
:why:
62+
:versions: []
63+
:when: 2022-11-17 17:47:26.832844000 Z

0 commit comments

Comments
 (0)