feat: change packer dependency version restrictions
This commit is contained in:
+1
-1
@@ -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
|
||||||
|
|||||||
@@ -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",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Generated
+1
-1
@@ -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" },
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user