Skip to content

Commit

Permalink
Update github workflow, README, CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
evz committed Nov 14, 2024
1 parent 3f9912c commit 8d17499
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
- 5432:5432
strategy:
matrix:
<<<<<<< Updated upstream
python-version: ['3.9', '3.10', '3.11', '3.12']
django-series: ['3.2', '4.0', '4.2']
=======
python-version: ['3.7', '3.8', '3.12']
django-series: ['4.2', '5.1']
>>>>>>> Stashed changes
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

* Add a --sync flag to the loaddivisions management command, to delete divisions that are in the DB but not the CSV, even if the DB contains the CSV. This flag is relevant if you synchronize with a single CSV.

## 3.4.0 (put the date here, I guess)

* Support Django versions >=4.2

## 3.3.0 (2023-05-08)

* Add last_seen field to database objects
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python-opencivicdata
Python utilities (including Django models) for implementing the
Open Civic Data specification.

**Requires Django >=2.2 and Python >= 3.6, pin to <3.0 for older versions**
**Requires Django >=4.2 and Python >= 3.6, pin to <3.0 for Django versions < 2.2 and < 3.3 for Django versions < 4.2 **

The Organization, Person, Membership, Post, and VoteEvent models and related models are based on the [Popolo specification](http://popoloproject.com/).

Expand Down
3 changes: 3 additions & 0 deletions opencivicdata/core/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
import re
import uuid
from django.db import models
<<<<<<< Updated upstream

=======
>>>>>>> Stashed changes
from django.contrib.postgres.fields import ArrayField
from django.core.validators import RegexValidator

Expand Down

0 comments on commit 8d17499

Please sign in to comment.