Skip to content

Commit

Permalink
Update PEP440 library
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Apr 15, 2024
1 parent 93568ec commit 1e8ddf1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion typescript/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"types": "lib/index.d.ts",
"version": "1.0.1",
"dependencies": {
"@renovatebot/pep440": "^3.0.19",
"@renovatebot/pep440": "^3.0.20",
"axios": "^1.4.0"
}
}
5 changes: 1 addition & 4 deletions typescript/base/src/instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,7 @@ const processPep440 = (pyVersion: Pep440Version) => {
}
return value;
});
// TODO: remove any after the fix in the @renovatebot/pep440 library
// https://github.com/renovatebot/pep440/pull/555
// eslint-disable-next-line @typescript-eslint/no-explicit-any
return stringify(pyVersion as any)!;
return stringify(pyVersion)!;
};

export abstract class Instance<ContractType> {
Expand Down
10 changes: 5 additions & 5 deletions typescript/base/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -106,18 +106,18 @@ __metadata:
languageName: node
linkType: hard

"@renovatebot/pep440@npm:^3.0.19":
version: 3.0.19
resolution: "@renovatebot/pep440@npm:3.0.19"
checksum: d4465f4bec8fe231ac5428c6ed1b9844508b0e0357eeb69818ce24a373faf41dbc2d2b60b2af474bf997aea918aaadb4d75ea005bfa6358deef9a5652f53d141
"@renovatebot/pep440@npm:^3.0.20":
version: 3.0.20
resolution: "@renovatebot/pep440@npm:3.0.20"
checksum: f7014e1774bd7df0db8d08ea9aa8432a668f829f5f6233aee28dc598dc43a4011e5a65962a8d5f295b39b1bb550fd172b85ecb5bb47b8e9cd8ab5db69dabb8e0
languageName: node
linkType: hard

"@skalenetwork/skale-contracts@workspace:.":
version: 0.0.0-use.local
resolution: "@skalenetwork/skale-contracts@workspace:."
dependencies:
"@renovatebot/pep440": ^3.0.19
"@renovatebot/pep440": ^3.0.20
"@tsconfig/recommended": ^1.0.2
"@types/node": ^20.2.5
"@typescript-eslint/eslint-plugin": ^6.0.0
Expand Down

0 comments on commit 1e8ddf1

Please sign in to comment.