Skip to content

Commit 39a9f73

Browse files
authored
Merge pull request #158 from synccomputingcode/shughes/relax-version-specifiers
Relax version specifiers + bump ver
2 parents a9eea55 + ee0efc6 commit 39a9f73

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# most/all Databricks Runtime LTS releases support pathspec >= 0.10.1, which may be a while...
88
# See here for DBR release notes - https://docs.databricks.com/release-notes/runtime/releases.html
99
build-backend = "hatchling.build"
10-
requires = ["hatchling==1.8.0"]
10+
requires = ["hatchling~=1.8.0"]
1111

1212
[project]
1313
authors = [{ "name" = "Sync Computing" }]
@@ -23,17 +23,17 @@ classifiers = [
2323
"Programming Language :: Python",
2424
]
2525
dependencies = [
26-
"azure-cli-core==2.50.0",
27-
"azure-identity==1.13.0",
28-
"azure-mgmt-compute==30.1.0",
29-
"azure-mgmt-resource==23.0.1",
26+
"azure-cli-core~=2.50",
27+
"azure-identity~=1.13",
28+
"azure-mgmt-compute~=30.1",
29+
"azure-mgmt-resource~=23.0",
3030
"boto3>=1.26.0,<2.0.0",
3131
"click~=8.1.0",
3232
"httpx~=0.23",
3333
"platformdirs",
3434
"pydantic~=1.10.0",
3535
"python-dateutil>=2.7,<3",
36-
"tenacity==8.2.2",
36+
"tenacity~=8.2",
3737
]
3838
dynamic = ["description", "version"]
3939
name = "syncsparkpy"

sync/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Library for leveraging the power of Sync"""
22

3-
__version__ = "1.11.7"
3+
__version__ = "1.11.8"
44

55
TIME_FORMAT = "%Y-%m-%dT%H:%M:%SZ"

0 commit comments

Comments
 (0)