Skip to content

Commit 876ebce

Browse files
authored
Merge pull request #173 from multiversx/fix-repo-name
Fixes after migration
2 parents abd1788 + 591fe9c commit 876ebce

5 files changed

Lines changed: 12 additions & 9 deletions

File tree

erdpy/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77
## [Unreleased]
88
- TBD
99

10+
## [3.0.2]
11+
- Fixes after repository migrations
12+
1013
## [3.0.1]
1114
- [Contract verify: fix CLI arguments & json request](https://github.com/ElrondNetwork/elrond-sdk-erdpy/pull/171)
1215

erdpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.1"
1+
__version__ = "3.0.2"

erdpy/dependencies/modules.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ def __init__(self, key: str, aliases: List[str] = None):
150150
aliases = list()
151151

152152
super().__init__(key, aliases)
153-
self.repo_name = 'wasm-vm'
154-
self.organisation = 'ElrondNetwork'
153+
self.repo_name = 'mx-vm-wasm-go'
154+
self.organisation = 'multiversx'
155155

156156
def _post_install(self, tag: str):
157157
dependencies.install_module('golang')
@@ -406,8 +406,8 @@ def _post_install(self, tag: str):
406406
class TestWalletsModule(StandaloneModule):
407407
def __init__(self, key: str):
408408
super().__init__(key, [])
409-
self.organisation = "ElrondNetwork"
410-
self.repo_name = "elrond-sdk-testwallets"
409+
self.organisation = "multiversx"
410+
self.repo_name = "mx-sdk-testwallets"
411411

412412
def _post_install(self, tag: str):
413413
# We'll create a "latest" symlink

erdpy/projects/templates_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def get_templates_repositories():
2626
key="elrond-wasm-rs",
2727
url=f"https://github.com/ElrondNetwork/elrond-wasm-rs/archive/{examples_rs_tag}.zip?t={timestamp}",
2828
github="ElrondNetwork/elrond-wasm-rs",
29-
relative_path=f"elrond-wasm-rs-{examples_rs_tag_no_v}/contracts/examples"
29+
relative_path=f"mx-sdk-rs-{examples_rs_tag_no_v}/contracts/examples"
3030
)
3131
]
3232

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import setuptools
22

33
with open("README.md", "r") as fh:
4-
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"
4+
long_description = "https://github.com/multiversx/mx-sdk-erdpy"
55

6-
VERSION = "3.0.1"
6+
VERSION = "3.0.2"
77

88
try:
99
with open('./erdpy/_version.py', 'wt') as versionfile:
@@ -18,7 +18,7 @@
1818
description="Elrond Smart Contracts Tools and Python SDK",
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",
21-
url="https://github.com/ElrondNetwork/elrond-sdk-erdpy",
21+
url="https://github.com/multiversx/mx-sdk-erdpy",
2222
author="Elrond Network",
2323
license="GPL",
2424
packages=setuptools.find_packages(

0 commit comments

Comments
 (0)