Compare commits

..

3 Commits
v3.2.3 ... main

Author SHA1 Message Date
dependabot[bot]
f02ea337a2
Bump django from 3.2.25 to 4.2.18 in /examples/cookbook (#1543)
Bumps [django](https://github.com/django/django) from 3.2.25 to 4.2.18.
- [Commits](https://github.com/django/django/compare/3.2.25...4.2.18)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-23 07:01:33 -07:00
Jeongseok Kang
ad26bfa2f6
ci: Upgrade GitHub Actions versions (#1546)
* ci: Upgrade actions/checkout

* ci: Upgrade actions/setup-python
2025-06-23 07:00:48 -07:00
Jeongseok Kang
788a20490a
chore: Add support for Django 5.2 (#1544)
* chore: Add support for Django 5.2

* chore: Update setup.py
2025-06-23 06:59:21 -07:00
6 changed files with 16 additions and 8 deletions

View File

@ -15,9 +15,9 @@ jobs:
needs: [lint, tests] needs: [lint, tests]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python 3.11 - name: Set up Python 3.11
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
- name: Build wheel and source tarball - name: Build wheel and source tarball

View File

@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python 3.11 - name: Set up Python 3.11
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
- name: Install dependencies - name: Install dependencies

View File

@ -12,7 +12,7 @@ jobs:
strategy: strategy:
max-parallel: 4 max-parallel: 4
matrix: matrix:
django: ["3.2", "4.2", "5.0", "5.1"] django: ["3.2", "4.2", "5.0", "5.1", "5.2"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude: exclude:
- django: "3.2" - django: "3.2"
@ -27,10 +27,14 @@ jobs:
python-version: "3.8" python-version: "3.8"
- django: "5.1" - django: "5.1"
python-version: "3.9" python-version: "3.9"
- django: "5.2"
python-version: "3.8"
- django: "5.2"
python-version: "3.9"
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies

View File

@ -1,5 +1,5 @@
graphene>=2.1,<3 graphene>=2.1,<3
graphene-django>=2.1,<3 graphene-django>=2.1,<3
graphql-core>=2.1,<3 graphql-core>=2.1,<3
django==3.2.25 django==4.2.18
django-filter>=2 django-filter>=2

View File

@ -55,6 +55,8 @@ setup(
"Framework :: Django :: 3.2", "Framework :: Django :: 3.2",
"Framework :: Django :: 4.1", "Framework :: Django :: 4.1",
"Framework :: Django :: 4.2", "Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
], ],
keywords="api graphql protocol rest relay graphene", keywords="api graphql protocol rest relay graphene",
packages=find_packages(exclude=["tests", "examples", "examples.*"]), packages=find_packages(exclude=["tests", "examples", "examples.*"]),

View File

@ -19,6 +19,7 @@ DJANGO =
4.2: django42 4.2: django42
5.0: django50 5.0: django50
5.1: django51 5.1: django51
5.2: django52
main: djangomain main: djangomain
[testenv] [testenv]
@ -34,6 +35,7 @@ deps =
django42: Django>=4.2,<4.3 django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1 django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2 django51: Django>=5.1,<5.2
django52: Django>=5.2,<6.0
djangomain: https://github.com/django/django/archive/main.zip djangomain: https://github.com/django/django/archive/main.zip
commands = {posargs:pytest --cov=graphene_django graphene_django examples} commands = {posargs:pytest --cov=graphene_django graphene_django examples}