@renovatebot/pep440
Advanced tools
Comparing version 2.1.8 to 2.1.9
@@ -123,2 +123,8 @@ // This file is dual licensed under the terms of the Apache License, Version | ||
function satisfies(version, specifier, options = {}) { | ||
if (specifier.startsWith("~=")) { | ||
if (Operator.eq(version, specifier.replace(/^~=\s*/, ""))) { | ||
return true; | ||
} | ||
} | ||
const filtered = pick([version], specifier, options); | ||
@@ -125,0 +131,0 @@ |
{ | ||
"name": "@renovatebot/pep440", | ||
"version": "2.1.8", | ||
"version": "2.1.9", | ||
"description": "PEP440 implementation in JavaScript", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34996
747