Skip to content

Commit

Permalink
Merge pull request #672 from valory-xyz/feat/source-repo-validation
Browse files Browse the repository at this point in the history
Fix repository source regex
  • Loading branch information
angrybayblade authored Sep 28, 2023
2 parents 4fc02c1 + 61a52f7 commit 88e003c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aea/package_manager/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
IS_IPFS_PLUGIN_INSTALLED = False

PACKAGES_FILE = "packages.json"
PACKAGE_SOURCE_RE = re.compile(r"([a-z-_0-9]+\/[a-z-_0-9]+)((:)([a-z\.0-9_-]+))?")
PACKAGE_SOURCE_RE = re.compile(r"([a-z-_0-9A-Z]+\/[a-z-_0-9A-Z]+)((:)([a-z\.0-9_-]+))?")

PackageIdToHashMapping = OrderedDictType[PackageId, str]
ConfigLoaderCallableType = Callable[[PackageType, Path], PackageConfiguration]
Expand Down

0 comments on commit 88e003c

Please sign in to comment.