Skip to content

Commit 74d44c3

Browse files
authored
prepare v1.9.2 (#170)
* prepare v1.9.2 * update dependencies * update changelog
1 parent 31baf2d commit 74d44c3

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

CHANGELOG.md

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

33

4+
## 1.9.2
5+
- maintenance: explicit re-export and code quality (#168)
6+
- setup: remove pytest.ini (#167)
7+
- update dependencies
8+
49
## 1.9.1
510
- fix: more robust copyright parsing (#165)
611
- cleaning fix: safer element removal (2735620)

docs/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# version required
2-
sphinx>=8.0.2
2+
sphinx>=8.1.3
33
# without version specifier
44
htmldate

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__ = "Apache-2.0"
9-
__copyright__ = "Copyright 2017-2024, Adrien Barbaresi"
10-
__version__ = "1.9.1"
9+
__copyright__ = "Copyright 2017-present, Adrien Barbaresi"
10+
__version__ = "1.9.2"
1111

1212

1313
import logging

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ classifiers = [
4848
"Topic :: Text Processing :: Markup :: HTML",
4949
]
5050
dependencies = [
51-
"charset_normalizer >= 3.3.2",
51+
"charset_normalizer >= 3.4.0",
5252
"dateparser >= 1.1.2", # 1.1.3+ slower
5353
# see tests on Github Actions
5454
"lxml == 4.9.2 ; platform_system == 'Darwin' and python_version <= '3.8'",
55-
"lxml >= 5.2.2, < 6 ; platform_system != 'Darwin' or python_version > '3.8'",
56-
"python-dateutil >= 2.8.2",
55+
"lxml >= 5.3.0, < 6 ; platform_system != 'Darwin' or python_version > '3.8'",
56+
"python-dateutil >= 2.9.0.post0",
5757
"urllib3 >= 1.26, < 3",
5858
]
5959

tests/eval-requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# package
2-
htmldate>=1.8.1
2+
htmldate>=1.9.2
33

44
# alternatives
55
articleDateExtractor==0.20
66
date_guesser==2.1.4
77
goose3==3.1.19
88
newspaper3k==0.2.8
9-
news-please==1.5.44
9+
news-please==1.6.13
1010

1111
# helpers
1212
tabulate==0.9.0
13-
tqdm==4.66.4
13+
tqdm==4.67.0

0 commit comments

Comments
 (0)