Skip to content

Commit 71acc4c

Browse files
authored
Merge pull request #136 from creativecommons/update-python-modules
update python modules
2 parents 4b88408 + d3bf232 commit 71acc4c

File tree

3 files changed

+75
-72
lines changed

3 files changed

+75
-72
lines changed

.github/workflows/main.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ on:
77
branches: [ develop ]
88

99
jobs:
10-
lint:
10+
11+
job_lint:
1112
runs-on: ubuntu-latest
1213
steps:
14+
1315
- uses: actions/checkout@v3
1416

1517
# https://devcenter.heroku.com/articles/getting-started-with-python
@@ -18,7 +20,7 @@ jobs:
1820
- name: Set up Python 3.10
1921
uses: actions/setup-python@v4
2022
with:
21-
python-version: 3.10
23+
python-version: '3.10'
2224

2325
- name: Install pipenv
2426
run: |
@@ -44,9 +46,9 @@ jobs:
4446
name: flake8-report
4547
path: test-reports/flake8
4648
# Use failure() to upload only if failure occurs
47-
if: failure()
49+
if: ${{ failure() }}
4850

49-
test:
51+
job_test:
5052
runs-on: ubuntu-latest
5153

5254
services:
@@ -78,12 +80,12 @@ jobs:
7880
- name: Set up Python 3.10
7981
uses: actions/setup-python@v4
8082
with:
81-
python-version: 3.10
83+
python-version: '3.10'
8284

83-
- name: Install pipenv
84-
run: |
85-
pip install --upgrade pip
86-
pip install pipenv
85+
- name: Install pipenv
86+
run: |
87+
pip install --upgrade pip
88+
pip install pipenv
8789
8890
- name: Install dependencies
8991
run: |

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ flake8 = "*"
1010
isort = "*"
1111

1212
[packages]
13-
Django = ">=3.2.14,<3.3"
13+
Django = ">=3.2.16,<3.3"
1414
django-countries = "*"
1515
django-heroku = "*"
1616
django-libsass = "*"

Pipfile.lock

+63-62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)