File tree Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Expand file tree Collapse file tree 4 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1616 # To see the list of pre-built images that CircleCI provides for most common languages see
1717 # https://circleci.com/docs/2.0/circleci-images/
1818 docker :
19- - image : circleci /python:3.8
19+ - image : cimg /python:3.13
2020 steps :
2121 # Machine Setup
2222 # If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: uncompyle6 (osx)
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [ python-3.6-to-3.10 ]
66 pull_request :
7- branches : [ master ]
7+ branches : [ python-3.6-to-3.10 ]
88
99jobs :
1010 build :
1414 os : [macOS]
1515 python-version : [3.8]
1616 steps :
17- - uses : actions/checkout@v2
17+ - uses : actions/checkout@v4
1818 - name : Set up Python ${{ matrix.python-version }}
19- uses : actions/setup-python@v2
19+ uses : actions/setup-python@v5
2020 with :
2121 python-version : ${{ matrix.python-version }}
2222 - name : Install dependencies
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: uncompyle6 (ubuntu)
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [ python-3.6-to-3.10 ]
66 pull_request :
7- branches : [ master ]
7+ branches : [ python-3.6-to-3.10 ]
88
99jobs :
1010 build :
1313 matrix :
1414 python-version : [3.8]
1515 steps :
16- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v4
1717 - name : Set up Python ${{ matrix.python-version }}
18- uses : actions/setup-python@v2
18+ uses : actions/setup-python@v5
1919 with :
2020 python-version : ${{ matrix.python-version }}
2121 - name : Install dependencies
Original file line number Diff line number Diff line change @@ -2,21 +2,21 @@ name: uncompyle6 (windows)
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [ python-3.6-to-3.10 ]
66 pull_request :
7- branches : [ master ]
7+ branches : [ python-3.6-to-3.10 ]
88
99jobs :
1010 build :
11- runs-on : macos -latest
11+ runs-on : windows -latest
1212 strategy :
1313 matrix :
1414 os : [windows]
1515 python-version : [3.8]
1616 steps :
17- - uses : actions/checkout@v2
17+ - uses : actions/checkout@v4
1818 - name : Set up Python ${{ matrix.python-version }}
19- uses : actions/setup-python@v2
19+ uses : actions/setup-python@v5
2020 with :
2121 python-version : ${{ matrix.python-version }}
2222 - name : Install dependencies
You can’t perform that action at this time.
0 commit comments