Skip to content

Commit bb2a764

Browse files
committed
fixed pandas dep error
1 parent 79bea4e commit bb2a764

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ site/
4242
.continue/config.yaml
4343
tutorials/resources/you_first_data_quality_report.csv
4444
scripts/test_null_behaviour.py
45+
46+
dev_notebooks/
47+
.continue/

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "uv_build"
44

55
[project]
66
name = "gchq-data-quality"
7-
version = "1.1.0"
7+
version = "1.1.1"
88
description = "Tools for data quality measurement in Pandas and Spark"
99
requires-python = ">=3.11"
1010
keywords = ["data quality"]
@@ -22,7 +22,7 @@ classifiers = [
2222

2323
dependencies = [
2424
"numpy>=2.4.1",
25-
"pandas>=3,<4",
25+
"pandas>=2.2.3,<4",
2626
"pydantic>=2.9",
2727
"pyyaml>=6.0.3",
2828
]
@@ -42,10 +42,11 @@ Respository = "https://github.com/gchq/gchq-data-quality"
4242
[project.optional-dependencies]
4343
pyspark = ["pyspark>=3.5.8", "pyarrow>=23.0.0"]
4444

45-
elasticsearch = ["elasticsearch>=8.17"]
45+
elasticsearch = ["elasticsearch>=8.17,<10"]
4646

4747
[dependency-groups]
4848
dev = [
49+
"elasticsearch>=9,<10", # we dev in elasticsearch v9 to match the local docker container in scripts/start-elasticsearch.sh
4950
"ruff>=0.9, <1",
5051
"pre-commit>=3.0",
5152
"nbconvert>=7.17.0,<8",

uv.lock

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)