Skip to content

Commit

Permalink
Merge pull request #59 from octue/update-django-gcp
Browse files Browse the repository at this point in the history
Update django gcp
  • Loading branch information
thclark authored Nov 28, 2023
2 parents 878b3c6 + 5f1a199 commit e797254
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
needs: [publish]
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install poetry
run: pip install poetry
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -77,4 +77,7 @@ jobs:
uses: codecov/codecov-action@v3
with:
files: coverage.xml
fail_ci_if_error: true
fail_ci_if_error: false
# Token is not required for public repos, but see:
# https://community.codecov.com/t/upload-issues-unable-to-locate-build-via-github-actions-api/3954
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ __pycache__/
*.py[cod]
*$py.class

*.DS_Store

# C extensions
*.so

Expand Down
22 changes: 16 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-twined"
version = "0.6.2"
version = "0.6.3"
description = "A django app to manage octue services"
authors = ["Tom Clark <tom@octue.com>"]
license = "MIT"
Expand All @@ -25,7 +25,7 @@ django = ">=3.0,<4.0"
channels = ">=3.0,<4.0"
octue = ">=0.40.0,<1"
pika = "^1.2.0"
django-gcp = ">=0.7.3,<0.11"
django-gcp = ">=0.7.3,<0.12"
django-jsoneditor = "^0.2.2"
django-model-utils = "^4.2.0"

Expand Down

0 comments on commit e797254

Please # to comment.