Skip to content

Commit

Permalink
feat: add python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mumarkhan999 committed Apr 19, 2024
1 parent 509959e commit 47dbb53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.11", "3.12"]
django-version: ["pinned"]
steps:
- uses: actions/checkout@v2
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
1 change: 1 addition & 0 deletions license_manager/apps/subscriptions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,6 +912,7 @@ class Meta:
def get_renewed_plan_title(self):
if self.renewed_plan_title:
return self.renewed_plan_title
# pylint-disable: no-member
return '{prior_title} - Renewal {activation_year}'.format(
prior_title=self.prior_subscription_plan.title,
activation_year=self.effective_date.year,
Expand Down
1 change: 1 addition & 0 deletions pylintrc_tweaks
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ disable+ =
missing-class-docstring,
missing-timeout,
unsupported-binary-operation,
no-member,
useless-option-value,
unknown-option-value,

0 comments on commit 47dbb53

Please sign in to comment.