Skip to content

Commit

Permalink
prepare v1.5.2 and update setup (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Oct 9, 2023
1 parent 5b6cea8 commit da38893
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12-dev"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
env: [{ MINIMAL: "true" }, { MINIMAL: "false" }]
include:
# custom python versions
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

## 1.5.2
- fix for missing months keys in custom extractor (#100)
- fix for None in `try_date_expr()` (#101)

## 1.5.1
- fix regression for fast extraction introduced in e8b3538 (#96)
- fix setup by making backports-datetime-fromisoformat optional (#95)
Expand Down
2 changes: 1 addition & 1 deletion htmldate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__author__ = "Adrien Barbaresi"
__license__ = "GNU GPL v3"
__copyright__ = "Copyright 2017-2023, Adrien Barbaresi"
__version__ = "1.5.1"
__version__ = "1.5.2"


import logging
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_version(package):
install_requires=[
"backports-datetime-fromisoformat; python_version < '3.7'",
"charset_normalizer >= 3.0.1; python_version < '3.7'",
"charset_normalizer >= 3.2.0; python_version >= '3.7'",
"charset_normalizer >= 3.3.0; python_version >= '3.7'",
"dateparser >= 1.1.2", # 1.1.3+ slower
"lxml >= 4.9.3 ; platform_system != 'Darwin'",
"lxml == 4.9.2 ; platform_system == 'Darwin'",
Expand Down

0 comments on commit da38893

Please sign in to comment.