Skip to content

Commit

Permalink
Merge pull request #61 from ambitioninc/develop
Browse files Browse the repository at this point in the history
Final Django4 changes
  • Loading branch information
benthuffine authored Aug 28, 2023
2 parents 4df25c4 + 59104d4 commit 66306de
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 7 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
- 'Django~=4.0.0'
- 'Django~=4.1.0'
- 'Django~=4.2.0'
psycopg:
- 'psycopg2==2.9.6'
- 'psycopg==3.1.10'
experimental: [false]
exclude:
- python: '3.7'
Expand All @@ -30,6 +33,12 @@ jobs:
django: 'Django~=4.1.0'
- python: '3.7'
django: 'Django~=4.2.0'
- psycopg: 'psycopg==3.1.10'
django: 'Django~=3.2.0'
- psycopg: 'psycopg==3.1.10'
django: 'Django~=4.0.0'
- psycopg: 'psycopg==3.1.10'
django: 'Django~=4.1.0'

services:
postgres:
Expand Down Expand Up @@ -57,6 +66,7 @@ jobs:
pip install -r requirements/requirements.txt
pip install -r requirements/requirements-testing.txt
pip install "${{ matrix.django }}"
pip install "${{ matrix.psycopg }}"
pip freeze
- name: Run tests
env:
Expand Down
14 changes: 14 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.8"

sphinx:
configuration: docs/conf.py

python:
install:
- requirements: requirements/docs.txt
- requirements: requirements/requirements.txt
2 changes: 0 additions & 2 deletions localized_recurrence/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
# flake8: noqa
from .version import __version__

default_app_config = 'localized_recurrence.apps.LocalizedRecurrenceConfig'
1 change: 0 additions & 1 deletion localized_recurrence/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations
import ambition_utils.fields
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.11 on 2016-11-08 21:17
from __future__ import unicode_literals

import datetime
from django.db import migrations, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-

from __future__ import unicode_literals

from datetime import timedelta
from django.db import migrations
Expand Down
1 change: 0 additions & 1 deletion localized_recurrence/migrations/0004_auto_20161108_2151.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.11 on 2016-11-08 21:51
from __future__ import unicode_literals

import datetime
from django.db import migrations, models
Expand Down
2 changes: 1 addition & 1 deletion localized_recurrence/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.1.1'
__version__ = '4.1.3'
1 change: 1 addition & 0 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ ambition-utils>=3.1.1
fleming>=0.6.0
python-dateutil
pytz
django-timezone-field<6

0 comments on commit 66306de

Please sign in to comment.