Skip to content

Commit 506b000

Browse files
committed
chore: update pyproject.toml
Updates the metdata in pyproject.toml and lifts the upper version bound. Adds the latest python major release to e2e testing.
1 parent f5b4094 commit 506b000

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ jobs:
8888
strategy:
8989
matrix:
9090
os: ['ubuntu-latest', 'windows-latest']
91-
python-version: ['3.9', '3.10', '3.11']
91+
# test either 3.9, 3.10, 3.11 or latest 3.x
92+
python-version: ['3.9', '3.10', '3.11', '3.x']
9293
dotnet-version: ['8.0.x']
9394
# test either wheel or source distribution
9495
dist: [whl, sdist]

pyproject.toml

+13-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44
authors = [
55
{name = "Data Factory Testing Framework", email = "dftf@microsoft.com"},
66
]
7-
requires-python = ">=3.9,<3.13"
7+
requires-python = ">=3.9"
88
classifiers = [
99
"Programming Language :: Python :: 3.9",
1010
"Programming Language :: Python :: 3.10",
@@ -13,10 +13,18 @@ classifiers = [
1313
"License :: OSI Approved :: MIT License",
1414
"Operating System :: OS Independent",
1515
]
16-
description = "A stand-alone test framework that allows to write unit tests for Data Factory pipelines on Microsoft Fabric and Azure Data Factory."
16+
description = "A stand-alone test framework that allows to write unit tests for Data Factory pipelines on Microsoft Fabric, Azure Data Factory and Azure Synapse Analytics."
1717
readme = "README.md"
18-
license = { file="LICENSE" }
19-
keywords = ["fabric", "datafactory", "unit-testing", "functional-testing", "azure"]
18+
license = "MIT"
19+
license-files = ["LICENSE"]
20+
keywords = [
21+
"fabric",
22+
"datafactory",
23+
"synapse analytics",
24+
"unit-testing",
25+
"functional-testing",
26+
"azure"
27+
]
2028

2129
dependencies = [
2230
"lark>=1.1.8,<2.0.0",
@@ -33,7 +41,7 @@ Source = "https://github.com/microsoft/data-factory-testing-framework.git"
3341
package-mode = false
3442

3543
[tool.poetry.dependencies]
36-
python = ">=3.9,<3.13"
44+
python = ">=3.9"
3745
lark = "^1.1.8"
3846
pythonnet = "^3.0.3"
3947

0 commit comments

Comments
 (0)