Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 3 additions & 13 deletions .github/workflows/Python tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9, "3.10"]
python: ["3.13"]
fail-fast: false

env:
Expand Down Expand Up @@ -36,18 +36,8 @@ jobs:
pip install versio
pip install tox

- name: Run Tox py-django3
if: (success() || failure())
run: tox -e py-django32-drf314

- name: Run Tox py-django4
if: (success() || failure())
run: tox -e py-django42-drf314,py-django42-drftip

- name: Run Tox py-djangotip-drftip
if: (success() || failure())
continue-on-error: true
run: tox -e py-djangotip-drftip
- name: Run Tox
run: tox -e py-django52-drf318

# TODO: uncomment tests when JSON field is supported for older versions and other browsers tested

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9]
python: ["3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/incremental-cover-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.13.0'
node-version: '22.14.0'
- name: Install Dependencies
run: npm ci
- name: Test build
run: npm run build-no-tsc --if-present
- name: Run tests
run: npm test
- name: Set up Python 3.9
- name: Set up Python 3.13
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.13"
- name: PIP install
run: |
pip3 install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion dynamicforms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "DynamicForms"
__version__ = "0.81.7"
__version__ = "0.81.8"
__author__ = "Jure Erznožnik"
__email__ = "jure.erznoznik@gmail.com"
__license__ = "BSD 3-Clause"
Expand Down
Loading
Loading