Skip to content

Commit 3cb83b3

Browse files
denrouclaude
andauthored
chore(deps): relax dependency bounds and bump to v0.3.7 (#52)
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 928434f commit 3cb83b3

File tree

3 files changed

+732
-421
lines changed

3 files changed

+732
-421
lines changed

pyproject.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[project]
22
name = "pywarp10"
3-
version = "0.3.6"
3+
version = "0.3.7"
44
description = "Simplify use of warpscript with python."
55
authors = [{ name = "Denis Roussel", email = "droussel@centreon.com" }]
66
requires-python = ">=3.10,<4.0"
77
dependencies = [
8-
"py4j>=0,<1",
9-
"pandas>=2,<3",
10-
"dateparser>=1,<2",
11-
"durations>=0,<1",
12-
"tqdm>=4,<5",
13-
"requests>=2,<3",
8+
"py4j>=0",
9+
"pandas>=2",
10+
"dateparser>=1",
11+
"durations>=0",
12+
"tqdm>=4",
13+
"requests>=2",
1414
]
1515

1616
[dependency-groups]
1717
dev = [
18-
"pandas-stubs>=2.2.3.241126,<3",
19-
"ruff>=0.8.1,<0.16",
20-
"mypy>=1.13.0,<2",
21-
"types-dateparser>=1.2.0.20240420,<2",
22-
"types-requests>=2.32.0.20241016,<3",
23-
"pytest>=8.3.4,<10",
24-
"coverage-badge>=1,<2",
25-
"coverage>=7.6.8,<8",
26-
"pytest-mock>=3,<4",
18+
"pandas-stubs>=2.2.3.241126",
19+
"ruff>=0.8.1",
20+
"mypy>=1.13.0",
21+
"types-dateparser>=1.2.0.20240420",
22+
"types-requests>=2.32.0.20241016",
23+
"pytest>=8.3.4",
24+
"coverage-badge>=1",
25+
"coverage>=7.6.8",
26+
"pytest-mock>=3",
2727
"pytest-cov>=6.1.1",
2828
]
2929

tests/test_sanitize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_sanitize():
1717
"date_string": "2020-01-01",
1818
"invalid_token_date_string": "test{}",
1919
"date_datetime": pd.Timestamp("2020-01-01 12:00:00"),
20-
"date_timedelta": pd.Timedelta("1d"),
20+
"date_timedelta": pd.Timedelta("1D"),
2121
"date_date": datetime.date(2020, 1, 1),
2222
"duration": "1h",
2323
"string_number": "1871",

0 commit comments

Comments
 (0)