Skip to content

Commit ae7242e

Browse files
chore(deps): bump the python-dependencies group with 8 updates
Updates the requirements on [pyarrow](https://github.com/apache/arrow), [certifi](https://github.com/certifi/python-certifi), [ruff](https://github.com/astral-sh/ruff), [mypy](https://github.com/python/mypy), [pytest-httpserver](https://github.com/csernazs/pytest-httpserver), [types-requests](https://github.com/python/typeshed), [pandas-stubs](https://github.com/pandas-dev/pandas-stubs) and [build](https://github.com/pypa/build) to permit the latest version. Updates `pyarrow` to 24.0.0 - [Release notes](https://github.com/apache/arrow/releases) - [Commits](apache/arrow@apache-arrow-23.0.1...apache-arrow-24.0.0) Updates `certifi` to 2026.4.22 - [Commits](certifi/python-certifi@2026.02.25...2026.04.22) Updates `ruff` to 0.15.12 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.15.10...0.15.12) Updates `mypy` to 1.20.2 - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](python/mypy@v1.20.0...v1.20.2) Updates `pytest-httpserver` from 1.1.3 to 1.1.5 - [Release notes](https://github.com/csernazs/pytest-httpserver/releases) - [Changelog](https://github.com/csernazs/pytest-httpserver/blob/master/CHANGES.rst) - [Commits](csernazs/pytest-httpserver@1.1.3...1.1.5) Updates `types-requests` to 2.33.0.20260408 - [Commits](https://github.com/python/typeshed/commits) Updates `pandas-stubs` to 3.0.0.260204 - [Changelog](https://github.com/pandas-dev/pandas-stubs/blob/main/docs/release_procedure.md) - [Commits](pandas-dev/pandas-stubs@v3.0.0.260204...v3.0.0.260204) Updates `build` to 1.4.4 - [Release notes](https://github.com/pypa/build/releases) - [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst) - [Commits](pypa/build@1.4.3...1.4.4) --- updated-dependencies: - dependency-name: pyarrow dependency-version: 24.0.0 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: certifi dependency-version: 2026.4.22 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: ruff dependency-version: 0.15.12 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: mypy dependency-version: 1.20.2 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: pytest-httpserver dependency-version: 1.1.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-dependencies - dependency-name: types-requests dependency-version: 2.33.0.20260408 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: pandas-stubs dependency-version: 3.0.0.260204 dependency-type: direct:production dependency-group: python-dependencies - dependency-name: build dependency-version: 1.4.4 dependency-type: direct:development dependency-group: python-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8d0250c commit ae7242e

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ readme = "README.md"
1010
license = {text = "Apache-2.0"}
1111
requires-python = ">=3.11"
1212
dependencies = [
13-
"pyarrow>=23.0.1",
13+
"pyarrow>=24.0.0",
1414
"pandas>=3.0.2",
15-
"certifi>=2026.2.25",
15+
"certifi>=2026.4.22",
1616
"requests>=2.33.1",
1717
]
1818
authors = [
@@ -41,19 +41,19 @@ Issues = "https://github.com/spiceai/spicepy/issues"
4141
test = [
4242
"pylint>=4.0.5",
4343
"flake8>=7.3.0",
44-
"ruff>=0.15.10",
45-
"mypy>=1.20.0",
44+
"ruff>=0.15.12",
45+
"mypy>=1.20.2",
4646
"pytest>=9.0.3",
4747
"pytest-cov>=7.1.0",
4848
"pytest-xdist>=3.8.0",
4949
"pytest-timeout>=2.4.0",
5050
"pytest_httpserver==1.1.5",
51-
"types-requests>=2.33.0",
52-
"pandas-stubs>=3.0.0",
51+
"types-requests>=2.33.0.20260408",
52+
"pandas-stubs>=3.0.0.260204",
5353
"black>=26.3.1",
5454
"bandit>=1.9.4",
5555
"pandas>=3.0.2",
56-
"pyarrow>=23.0.1",
56+
"pyarrow>=24.0.0",
5757
"adbc-driver-flightsql>=1.11.0",
5858
"adbc-driver-manager>=1.11.0",
5959
]
@@ -250,5 +250,5 @@ skips = ["B101"] # assert_used
250250

251251
[dependency-groups]
252252
dev = [
253-
"build>=1.4.3",
253+
"build>=1.4.4",
254254
]

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pyarrow>=23.0.1
1+
pyarrow>=24.0.0
22
pandas>=3.0.2
3-
certifi>=2026.2.25
3+
certifi>=2026.4.22
44
requests>=2.33.1

test.requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# Linting & Formatting
22
pylint>=3.3.1
33
flake8>=7.1.1
4-
ruff>=0.4.0
5-
mypy>=1.10.0
4+
ruff>=0.15.12
5+
mypy>=1.20.2
66

77
# Testing
88
pytest>=8.3.3
99
pytest-cov>=5.0.0
1010
pytest-xdist>=3.5.0
1111
pytest-timeout>=2.3.1
12-
pytest_httpserver==1.1.3
12+
pytest_httpserver==1.1.5
1313

1414
# Type stubs
15-
types-requests>=2.31.0
16-
pandas-stubs>=2.0.0
15+
types-requests>=2.33.0.20260408
16+
pandas-stubs>=3.0.0.260204
1717

1818
# Security scanning
1919
bandit>=1.7.8
2020
# Runtime dependencies (needed for tests)
21-
pyarrow>=17.0.0
21+
pyarrow>=24.0.0
2222
pandas>=2.0.0

0 commit comments

Comments
 (0)