Skip to content

Commit 5f8326b

Browse files
authored
Merge pull request #188 from creativecommons/python-3-11-updates
update to Python 3.11 and update modules
2 parents 9634739 + 0aea4f6 commit 5f8326b

File tree

6 files changed

+300
-252
lines changed

6 files changed

+300
-252
lines changed

.github/workflows/manage_issues.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
steps:
4545

4646
# https://github.com/actions/setup-python
47-
- name: Install Python 3.10
47+
- name: Install Python 3.11
4848
uses: actions/setup-python@v4
4949
with:
50-
python-version: '3.10'
50+
python-version: '3.11'
5151

5252
- name: Install pipenv
5353
run: |
@@ -56,7 +56,7 @@ jobs:
5656
5757
# https://github.com/actions/checkout
5858
- name: Checkout repository
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060

6161
- name: Install Python dependencies
6262
run: |

.github/workflows/normalize_repos.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: Setup Python 3.10
13+
- name: Setup Python 3.11
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: '3.10'
16+
python-version: '3.11'
1717
- name: Install system dependencies
1818
run: |
1919
python -m pip install --upgrade pip
2020
python -m pip install pipenv
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
2424
- name: Install app dependencies

.github/workflows/push_data_to_ccos.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Setup Python 3.10
12+
- name: Setup Python 3.11
1313
uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.10'
15+
python-version: '3.11'
1616
- name: Install system dependencies
1717
run: |
1818
python -m pip install --upgrade pip
1919
python -m pip install pipenv
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Install app dependencies
2222
run: |
2323
pipenv sync

.github/workflows/sync_community_teams.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Setup Python 3.10
12+
- name: Setup Python 3.11
1313
uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.10'
15+
python-version: '3.11'
1616
- name: Install system dependencies
1717
run: |
1818
python -m pip install --upgrade pip
1919
python -m pip install pipenv
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Install app dependencies
2222
run: |
2323
pipenv sync

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ PyYAML = "*"
1818
requests = "*"
1919

2020
[requires]
21-
python_version = "3.10"
21+
python_version = "3.11"

0 commit comments

Comments
 (0)