File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ## 1.7.0
4
+ - fix meta property updated vs. original behavior (#121 )
5
+ - support for LXML version 5.0+ (#127 )
6
+ - fix image links in Readme
7
+
3
8
## 1.6.1
4
9
- fix for MacOS: pin LXML dependency with @adamh-oai
5
10
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ htmldate: find the publication date of web pages
33
33
|
34
34
35
35
36
- .. image :: docs/htmldate-logo.png
36
+ .. image :: https://github.com/adbar/htmldate/blob/master/ docs/htmldate-logo.png
37
37
:alt: Logo as PNG image
38
38
:align: center
39
39
:width: 60%
@@ -47,7 +47,7 @@ In a nutshell
47
47
48
48
|
49
49
50
- .. image :: docs/htmldate-demo.gif
50
+ .. image :: https://github.com/adbar/htmldate/blob/master/ docs/htmldate-demo.gif
51
51
:alt: Demo as GIF image
52
52
:align: center
53
53
:width: 80%
Original file line number Diff line number Diff line change 7
7
__author__ = "Adrien Barbaresi"
8
8
__license__ = "GNU GPL v3"
9
9
__copyright__ = "Copyright 2017-2024, Adrien Barbaresi"
10
- __version__ = "1.6.1 "
10
+ __version__ = "1.7.0 "
11
11
12
12
13
13
import logging
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def get_version(package):
120
120
"dateparser >= 1.1.2" , # 1.1.3+ slower
121
121
# see tests on Github Actions
122
122
"lxml == 4.9.2; platform_system == 'Darwin' and python_version <= '3.8'" ,
123
- "lxml >= 5.1.0 , < 6; platform_system != 'Darwin' or python_version > '3.8'" ,
123
+ "lxml >= 4.9.4 , < 6; platform_system != 'Darwin' or python_version > '3.8'" ,
124
124
"python-dateutil >= 2.8.2" ,
125
125
"urllib3 >= 1.26, < 2; python_version < '3.7'" ,
126
126
"urllib3 >= 1.26, < 3; python_version >= '3.7'" ,
You can’t perform that action at this time.
0 commit comments