Skip to content

Commit

Permalink
Bump version, fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
drozdowsky committed Sep 8, 2023
1 parent 698fec9 commit 0788401
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
python-version: [3.9, 3.11]

services:
postgres:
Expand Down Expand Up @@ -39,4 +39,4 @@ jobs:
- name: Test with pytest
run: |
pip install -e .
pytest
python -m pytest
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
django_find_project = false
DJANGO_SETTINGS_MODULE = tests.settings

[flake8]
extend-ignore = F401,F403,E501

[wheel]
universal = 1
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-tracking-model",
version="0.1.6",
version="0.1.7",
packages=["tracking_model"],
description="Track changes made to django model instance fields.",
long_description=README,
Expand Down
2 changes: 1 addition & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"NAME": "django_tracking_model",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "localhost",
"HOST": "postgres",
"PORT": "",
}
}
Expand Down

0 comments on commit 0788401

Please sign in to comment.