Skip to content

Commit b296776

Browse files
authored
prepare v1.6.1 (#118)
* prepare v1.6.1 * pin lxml
1 parent 69310fa commit b296776

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Changelog
22

3+
## 1.6.1
4+
- fix for MacOS: pin LXML dependency with @adamh-oai
35

46
## 1.6.0
57
- focus on precision, stricter extraction patterns (#103, #105, #106, #112)

htmldate/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
__title__ = "htmldate"
77
__author__ = "Adrien Barbaresi"
88
__license__ = "GNU GPL v3"
9-
__copyright__ = "Copyright 2017-2023, Adrien Barbaresi"
10-
__version__ = "1.6.0"
9+
__copyright__ = "Copyright 2017-2024, Adrien Barbaresi"
10+
__version__ = "1.6.1"
1111

1212

1313
import logging

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def get_version(package):
120120
"dateparser >= 1.1.2", # 1.1.3+ slower
121121
# see tests on Github Actions
122122
"lxml == 4.9.2 ; platform_system == 'Darwin' and python_version <= '3.8'",
123-
"lxml >= 4.9.4 ; platform_system != 'Darwin' or python_version > '3.8'",
123+
"lxml == 4.9.4 ; platform_system != 'Darwin' or python_version > '3.8'",
124124
"python-dateutil >= 2.8.2",
125125
"urllib3 >= 1.26, < 2; python_version < '3.7'",
126126
"urllib3 >= 1.26, < 3; python_version >= '3.7'",

0 commit comments

Comments
 (0)