Skip to content

Commit

Permalink
3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jul 18, 2018
1 parent cb56aca commit 1fcdd7a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ https://github.com/coleifer/peewee/releases

## master

[View commits](https://github.com/coleifer/peewee/compare/3.6.0...master)
[View commits](https://github.com/coleifer/peewee/compare/3.6.2...master)

## 3.6.2

Use `ctypes.util.find_library` to determine if `libsqlite3` is installed.
Should fix problems people are encountering installing when SQLite3 is not
available.

[View commits](https://github.com/coleifer/peewee/compare/3.6.1...3.6.2)

## 3.6.1

Expand Down
2 changes: 1 addition & 1 deletion peewee.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
mysql = None


__version__ = '3.6.1'
__version__ = '3.6.2'
__all__ = [
'AsIs',
'AutoField',
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
['playhouse/_sqlite_ext' + src_ext],
libraries=['sqlite3'])

# Are SQLite extensions explicitly disabled?
NO_SQLITE = os.environ.get('NO_SQLITE') or False

if not extension_support:
ext_modules = None
elif NO_SQLITE:
Expand Down

0 comments on commit 1fcdd7a

Please sign in to comment.