-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As of Julia 1.7, Pkg.Registry provides some of the same capability implemented in this package. When `VERSION` is at least v1.7, we use `Pkg.Registry.reachable_registries`, `Pkg.Registry.RegistryInstance`, and `Pkg.Registry.PkgEntry` instead of the custom versions implemented in this package. For lower version numbers, we use the custom versions implemented in this package. The largest change when using the new capabilities in Pkg.Registry is that this package's version of `RegistryInstance` stored a dictionary mapping package names to `PkgEntry`s, but Pkg.Registry's version has a dictionary mapping `UUID`s to `PkgEntry`s. A benefit of using the `Pkg.Registry` API is that it already supports both uncompressed registries as well as registries stored in compressed tarballs. Thus, this fixes #37.
- Loading branch information
1 parent
a568954
commit 59473f4
Showing
3 changed files
with
67 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters