Skip to content

Commit 5669739

Browse files
committed
Release 0.15.1
- removed version bound from `setup_requires`, allows building from source when only PyYaml 6.0 is available (and downloading 5.4 is not), #121, #125 - added type assertion to parser lookup, to make the error clearer on type error, #122, #123 - fixed `setup.py build_regexes` and `setup.py build` for non-in-place builds, #127
1 parent 1bd2fbf commit 5669739

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class sdist(_sdist):
200200

201201
setup(
202202
name="ua-parser",
203-
version="0.15.0",
203+
version="0.15.1",
204204
description="Python port of Browserscope's user agent parser",
205205
author="PBS",
206206
author_email="no-reply@pbs.org",

ua_parser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = (0, 15, 0)
1+
VERSION = (0, 15, 1)

0 commit comments

Comments
 (0)