Skip to content

1.3.x #66

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
merged 2 commits into from
Aug 8, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- '3.2' # LTS April 2024
- '4.2' # LTS April 2026
- '5.0' # April 2025
- '5.1rc1' # December 2025
- '5.1' # December 2025
exclude:
- python-version: '3.7'
django-version: '5.0'
Expand All @@ -27,11 +27,11 @@ jobs:
- python-version: '3.12'
django-version: '3.2'
- python-version: '3.7'
django-version: '5.1rc1'
django-version: '5.1'
- python-version: '3.8'
django-version: '5.1rc1'
django-version: '5.1'
- python-version: '3.9'
django-version: '5.1rc1'
django-version: '5.1'

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion django_enum/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -3730,7 +3730,7 @@ def test_single_field_benchmark(self):
)
# tends to be about 1.8x slower
self.assertTrue((enum_time / choice_time) < 2.5)
self.assertTrue((no_coerce_time / choice_time) < 2)
self.assertTrue((no_coerce_time / choice_time) < 2.2)


class ExampleTests(TestCase): # pragma: no cover - why is this necessary?
Expand Down
Loading