Skip to content

Commit b42329f

Browse files
authored
Update dependency ranges for generated clients (#483)
1 parent 17bee0f commit b42329f

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsPythonDependency.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ private AwsPythonDependency() {}
2222
*/
2323
public static final PythonDependency SMITHY_AWS_CORE = new PythonDependency(
2424
"smithy_aws_core",
25-
// You'll need to locally install this before we publish
26-
"==0.0.1",
25+
"<0.1.0",
2726
PythonDependency.Type.DEPENDENCY,
2827
false);
2928
}

codegen/core/src/main/java/software/amazon/smithy/python/codegen/SmithyPythonDependency.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ public final class SmithyPythonDependency {
2222
*/
2323
public static final PythonDependency SMITHY_CORE = new PythonDependency(
2424
"smithy_core",
25-
// You'll need to locally install this before we publish
26-
"==0.0.1",
25+
"<0.1.0",
2726
Type.DEPENDENCY,
2827
false);
2928

@@ -34,8 +33,7 @@ public final class SmithyPythonDependency {
3433
*/
3534
public static final PythonDependency SMITHY_HTTP = new PythonDependency(
3635
"smithy_http",
37-
// You'll need to locally install this before we publish
38-
"==0.0.1",
36+
"<0.1.0",
3937
Type.DEPENDENCY,
4038
false);
4139

@@ -62,7 +60,7 @@ public final class SmithyPythonDependency {
6260
*/
6361
public static final PythonDependency SMITHY_JSON = new PythonDependency(
6462
"smithy_json",
65-
"==0.0.1",
63+
"<0.1.0",
6664
Type.DEPENDENCY,
6765
false);
6866

@@ -71,7 +69,7 @@ public final class SmithyPythonDependency {
7169
*/
7270
public static final PythonDependency SMITHY_AWS_EVENT_STREAM = new PythonDependency(
7371
"smithy_aws_event_stream",
74-
"==0.0.1",
72+
"<0.1.0",
7573
Type.DEPENDENCY,
7674
false);
7775

packages/smithy-core/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "smithy-core"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "Core components for implementing Smithy tooling in Python."
55
readme = "README.md"
66
requires-python = ">=3.12"

uv.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)