-
Notifications
You must be signed in to change notification settings - Fork 77
Add Django 6 compatibility and modernise codebase #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
stephrdev
merged 12 commits into
codeinthehole:master
from
voyc-jean:fix-django-6-incompatibility
Dec 30, 2025
Merged
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
274a737
Remove use of deprecated django.utils.itercompat
voyc-jean 8033d8c
Bump version to 3.0.1
voyc-jean d458d22
Add classifiers for newer Python versions
voyc-jean 00fc485
Syntax modernisations for Python 3.10
voyc-jean fb7b0ae
Python and dependency version updates
voyc-jean 3e91c69
Cleanup deprecated functionality
voyc-jean 53856cb
Replace Vagrant with Docker Compose
voyc-jean 3fb0f83
Typo and import fixes
voyc-jean afd917c
Add Django debug toolbad
voyc-jean cd07284
Bump version to 4.0.0 and update changelog
voyc-jean 4458807
Cleanups
voyc-jean 9bd9424
Implement review feedback
voyc-jean File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| .vagrant | ||
| sandbox/db.sqlite3 | ||
| docs/_build | ||
| dist/* | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| 3.8.5 | ||
| 3.7.8 | ||
| 3.6.11 | ||
| 3.10.19 | ||
| 3.11.14 | ||
| 3.12.12 | ||
| 3.13.11 | ||
| 3.14.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| services: | ||
| django: &django | ||
| build: | ||
| context: . | ||
| dockerfile: sandbox/Dockerfile | ||
| entrypoint: /app/entrypoint | ||
| environment: | ||
| REDIS_HOST: redis | ||
| REDIS_PORT: 6379 | ||
| REDIS_DB: 0 | ||
| volumes: | ||
| - ./sandbox:/app | ||
| ports: | ||
| - "8080:8080" | ||
| depends_on: | ||
| redis: | ||
| condition: service_healthy | ||
|
|
||
| redis: | ||
| image: redis:7-alpine | ||
|
voyc-jean marked this conversation as resolved.
Outdated
|
||
| healthcheck: | ||
| test: ["CMD", "redis-cli", "ping"] | ||
| interval: 5s | ||
| timeout: 3s | ||
| retries: 10 | ||
|
|
||
| celery: | ||
| depends_on: | ||
| - django | ||
| - redis | ||
| <<: *django | ||
| ports: [] | ||
| entrypoint: celery -A sandbox worker --loglevel=INFO | ||
|
|
||
| rqworker: | ||
| depends_on: | ||
| - django | ||
| - redis | ||
| <<: *django | ||
| ports: [] | ||
| entrypoint: python manage.py rqworker | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.