Skip to content

Commit 0818192

Browse files
Merge pull request #311 from uploadcare/chore/py-dj-matrix
Update GH Actions test matrix
2 parents 5e47393 + cf766ae commit 0818192

File tree

2 files changed

+27
-22
lines changed

2 files changed

+27
-22
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: [3.12]
20+
python-version: [3.13]
2121

2222
steps:
2323
- uses: actions/checkout@v4
@@ -146,10 +146,12 @@ jobs:
146146
runs-on: ubuntu-latest
147147
strategy:
148148
matrix:
149-
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
150-
python-version: ["3.10", "3.11", "3.12"]
151-
django-version: ["5.0"]
152-
149+
# https://docs.djangoproject.com/en/5.2/faq/install/#what-python-version-can-i-use-with-django
150+
python-version: ["3.10", "3.11", "3.12", "3.13"]
151+
django-version: ["5.0", "5.1", "5.2"]
152+
exclude:
153+
- python-version: "3.13"
154+
django-version: "5.0"
153155
steps:
154156
- uses: actions/checkout@v4
155157
- name: set up python ${{ matrix.python-version }}
@@ -199,4 +201,3 @@ jobs:
199201
env:
200202
UPLOADCARE_PUBLIC_KEY: ${{ secrets.UPLOADCARE_PUBLIC_KEY }}
201203
UPLOADCARE_SECRET_KEY: ${{ secrets.UPLOADCARE_SECRET_KEY }}
202-

README.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
</a>
99
</p>
1010
<p align="center">
11-
<a href="https://pyuploadcare.readthedocs.io/en/latest/">Package Docs</a> •
12-
<a href="https://uploadcare.com/docs/">Uploadcare Docs</a> •
13-
<a href="https://uploadcare.com/api-refs/upload-api/">Upload API Reference</a> •
14-
<a href="https://uploadcare.com/api-refs/rest-api/">REST API Reference</a> •
15-
<a href="https://uploadcare.com/api-refs/url-api/">URL API Reference</a> •
11+
<a href="https://pyuploadcare.readthedocs.io/en/latest/">Package Docs</a> •
12+
<a href="https://uploadcare.com/docs/">Uploadcare Docs</a> •
13+
<a href="https://uploadcare.com/api-refs/upload-api/">Upload API Reference</a> •
14+
<a href="https://uploadcare.com/api-refs/rest-api/">REST API Reference</a> •
15+
<a href="https://uploadcare.com/api-refs/url-api/">URL API Reference</a> •
1616
<a href="https://uploadcare.com/">Website</a>
1717
</p>
1818

@@ -25,13 +25,17 @@
2525

2626
Build file handling in minutes. Upload or accept user-generated content, store, transform, optimize, and deliver images, videos, and documents to billions of users.
2727

28-
* [Description](#description)
29-
* [Documentation](#documentation)
30-
* [Installation](#installation)
31-
* [Requirements](#requirements)
32-
* [Usage](#usage)
33-
* [Testing](#testing)
34-
* [Demo app (Docker)](#demo-app)
28+
- [Python API client for Uploadcare](#python-api-client-for-uploadcare)
29+
- [Description](#description)
30+
- [Documentation](#documentation)
31+
- [Installation](#installation)
32+
- [Requirements](#requirements)
33+
- [Usage](#usage)
34+
- [Basic usage](#basic-usage)
35+
- [Django integration](#django-integration)
36+
- [Testing](#testing)
37+
- [Demo app](#demo-app)
38+
- [Suggestions and questions](#suggestions-and-questions)
3539

3640
## Description
3741

@@ -64,7 +68,7 @@ pip install pyuploadcare[django]
6468

6569
## Requirements
6670

67-
* Python 3.8, 3.9, 3.10, 3.11, 3.12
71+
* Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
6872

6973
To use pyuploadcare with Python 3.6 or 3.7 please install `pyuploadcare < 5.0`.
7074

@@ -239,6 +243,6 @@ We've developed a demo app that showcases most of the features. You can install
239243

240244
## Suggestions and questions
241245

242-
[Contributing guide](https://github.com/uploadcare/.github/blob/master/CONTRIBUTING.md)
243-
[Security policy](https://github.com/uploadcare/pyuploadcare/security/policy)
244-
[Support](https://github.com/uploadcare/.github/blob/master/SUPPORT.md)
246+
[Contributing guide](https://github.com/uploadcare/.github/blob/master/CONTRIBUTING.md)
247+
[Security policy](https://github.com/uploadcare/pyuploadcare/security/policy)
248+
[Support](https://github.com/uploadcare/.github/blob/master/SUPPORT.md)

0 commit comments

Comments
 (0)