Skip to content

Commit ed4b483

Browse files
committed
support py10.3
1 parent 53c6393 commit ed4b483

File tree

3 files changed

+102
-12
lines changed

3 files changed

+102
-12
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:3.12-bookworm
1+
FROM mcr.microsoft.com/devcontainers/python:3.10-bookworm
22

33
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
44
&& apt-get -y install --no-install-recommends \

poetry.lock

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

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,22 @@ authors = [
88
readme = "README.md"
99
homepage = "https://github.com/geekwhocodes/pyspark-msgraph-source"
1010
repository = "https://github.com/geekwhocodes/pyspark-msgraph-source"
11-
requires-python = ">=3.12,<4"
11+
requires-python = ">=3.10,<4"
1212
dependencies = [
13-
"pyspark (==4.0.0.dev2)",
14-
"msgraph-sdk (>=1.21.0,<2.0.0)",
15-
"azure-identity (>=1.20.0,<2.0.0)",
16-
"microsoft-kiota-serialization-json (>=1.9.2,<2.0.0)",
13+
"msgraph-sdk",
14+
"azure-identity",
15+
"microsoft-kiota-serialization-json",
1716
]
1817

1918
[tool.poetry]
2019
packages = [{include = "pyspark_msgraph_source", from = "src"}]
2120

2221
[tool.poetry.extras]
23-
list_items= []
22+
list-items= []
23+
all = []
2424

2525
[tool.poetry.group.dev.dependencies]
26+
pyspark = "4.0.0.dev2"
2627
pytest = "^8.3.4"
2728
black = "^25.1.0"
2829
isort = "^6.0.0"

0 commit comments

Comments
 (0)