feat: change packer dependency version restrictions

This commit is contained in:
2026-08-17 15:51:09 +08:00
parent 40fee18194
commit b9e9039c83
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ macro_rules! set_out_param {
/// ///
/// - `Result<T>` -- a type alias for `core::result::Result<T, UserError>`. /// - `Result<T>` -- a type alias for `core::result::Result<T, UserError>`.
/// - `UserError` -- the project's error type, which must implement [`Display`] and /// - `UserError` -- the project's error type, which must implement [`Display`] and
/// `From<UserError> for `[`CError`](crate::last_error::CError)` so it can be handed to /// `From<UserError>` for `[`CError`](crate::last_error::CError)` so it can be handed to
/// [`set_last_error`](crate::last_error::set_last_error). /// [`set_last_error`](crate::last_error::set_last_error).
/// ///
/// On success the wrapper clears the thread-local last error and yields /// On success the wrapper clears the thread-local last error and yields
+1 -1
View File
@@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
] ]
dependencies = [ dependencies = [
"jinja2==3.1.6", "jinja2>=3.1.6",
"semver>=3.0.4", "semver>=3.0.4",
] ]
+1 -1
View File
@@ -77,7 +77,7 @@ dependencies = [
[package.metadata] [package.metadata]
requires-dist = [ requires-dist = [
{ name = "jinja2", specifier = "==3.1.6" }, { name = "jinja2", specifier = ">=3.1.6" },
{ name = "semver", specifier = ">=3.0.4" }, { name = "semver", specifier = ">=3.0.4" },
] ]