Skip to content

Commit da38893

Browse files
authored
prepare v1.5.2 and update setup (#102)
1 parent 5b6cea8 commit da38893

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest]
20-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12-dev"]
20+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
2121
env: [{ MINIMAL: "true" }, { MINIMAL: "false" }]
2222
include:
2323
# custom python versions

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
## 1.5.2
4+
- fix for missing months keys in custom extractor (#100)
5+
- fix for None in `try_date_expr()` (#101)
6+
37
## 1.5.1
48
- fix regression for fast extraction introduced in e8b3538 (#96)
59
- fix setup by making backports-datetime-fromisoformat optional (#95)

htmldate/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__author__ = "Adrien Barbaresi"
88
__license__ = "GNU GPL v3"
99
__copyright__ = "Copyright 2017-2023, Adrien Barbaresi"
10-
__version__ = "1.5.1"
10+
__version__ = "1.5.2"
1111

1212

1313
import logging

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def get_version(package):
117117
install_requires=[
118118
"backports-datetime-fromisoformat; python_version < '3.7'",
119119
"charset_normalizer >= 3.0.1; python_version < '3.7'",
120-
"charset_normalizer >= 3.2.0; python_version >= '3.7'",
120+
"charset_normalizer >= 3.3.0; python_version >= '3.7'",
121121
"dateparser >= 1.1.2", # 1.1.3+ slower
122122
"lxml >= 4.9.3 ; platform_system != 'Darwin'",
123123
"lxml == 4.9.2 ; platform_system == 'Darwin'",

0 commit comments

Comments
 (0)