Skip to content

Commit

Permalink
Update dependencies, add docs and tests to sdist (zostera#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve authored Oct 30, 2020
1 parent c617e3f commit 95b58b6
Show file tree
Hide file tree
Showing 7 changed files with 132 additions and 100 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"

addons:
apt:
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Changelog

## [2.3.2] - In development

- Fix poetry build system configuration.
- Add Python 3.9 to Travis CI.
- Add docs and tests to sdist.

## [2.3.1] - 2020-10-16

- Fix CHANGELOG.
- Fix poetry build system configuration.

## [2.3.0] - 2020-10-11

Expand Down Expand Up @@ -146,4 +151,4 @@
- Remove `bootstrap_icon`, BS4 no longer has default icons.
- Various changes to get from 3 to 4, started MIGRATE.rst.
- Started `django-bootstrap4` based on `django-bootstrap3`.
- Thanks everybody that contributed to `django-bootstrap3`!
- Thanks everybody that contributed to `django-bootstrap3`!
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tox:

reformat:
autoflake -ir --remove-all-unused-imports ${PYTHON_SOURCES}
isort -rc ${PYTHON_SOURCES}
isort ${PYTHON_SOURCES}
docformatter -ir --pre-summary-newline --wrap-summaries=0 --wrap-descriptions=0 ${PYTHON_SOURCES}
black .

Expand Down
7 changes: 6 additions & 1 deletion example/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@

ADMINS = ()

DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": os.path.join(BASE_DIR, "db.sqlite3"),}}
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
}
}

# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
Expand Down
Loading

0 comments on commit 95b58b6

Please sign in to comment.