Skip to content

Commit

Permalink
Version 2.9.1 bump updates
Browse files Browse the repository at this point in the history
  • Loading branch information
RamezIssac committed Jun 7, 2022
1 parent 01947b2 commit 7dac57c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ python:
env:
- DJANGO=django==1.11.28
- DJANGO=django==2.2.12
- DJANGO=django==3.0.5
- DJANGO=django==3.1
- DJANGO=django==3.2
- DJANGO=django==4.0

before_install:
- wget https://github.com/mozilla/geckodriver/releases/download/v0.17.0/geckodriver-v0.17.0-linux64.tar.gz
Expand Down
5 changes: 2 additions & 3 deletions demo_proj/demo_app/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
from __future__ import unicode_literals

from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _


class DemoAppConfig(AppConfig):
name = 'demo_app'
Expand All @@ -14,5 +15,3 @@ def ready(self):
dummy_trans = _('Can deliver pizzas')
dummy_trans = _('Can do stuff')
dummy_trans = _('Can do more stuff')


3 changes: 1 addition & 2 deletions demo_proj/demo_app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import unicode_literals

from django.db import models
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _


class ModelWithDefaultPermissions(models.Model):
Expand Down Expand Up @@ -41,6 +41,5 @@ class Meta:


class ModelWithChangedDefaultPermissions(models.Model):

class Meta:
default_permissions = ('view',)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='django-tabular-permissions',
version='2.9',
version='2.9.1',
packages=['tabular_permissions'],
include_package_data=True,
license='BSD License',
Expand Down
4 changes: 2 additions & 2 deletions tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
try:
from django.conf.urls import url
except ImportError:
from django.urls import url
from django.urls import path

from django.contrib import admin


urlpatterns = [
url(r'^admin/', admin.site.urls),
path(r'^admin/', admin.site.urls),
]


0 comments on commit 7dac57c

Please sign in to comment.