Skip to content

Commit b8f6d67

Browse files
authored
Merge pull request #536 from singnet/development
Patch fix
2 parents ec72564 + 0f3cbbc commit b8f6d67

File tree

8 files changed

+13
-20
lines changed

8 files changed

+13
-20
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: install snet-cli
4040
run: |
4141
# ./scripts/blockchain install
42-
pip3 install -e . --break-system-packages
42+
pip3 install . --break-system-packages
4343
4444
# - name: install platform-contracts
4545
# run: |

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: install snet-cli
4040
run: |
4141
# ./scripts/blockchain install
42-
pip3 install -e . --break-system-packages
42+
pip3 install . --break-system-packages
4343
4444
# - name: install platform-contracts
4545
# run: |

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
include snet/cli/resources/proto/*
2-
include snet/cli/resources/package.json
1+
include snet/cli/resources/*
32

43
recursive-exclude * .git
54
recursive-exclude * node_modules

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
The package is published in PyPI at the following link:
66

7-
|Package |Description |
8-
|----------------------------------------------|---------------------------------------------------------------------|
9-
|[snet.cli](https://pypi.org/project/snet.cli/)|Command line interface to interact with the SingularityNET platform |
7+
| Package |Description |
8+
|------------------------------------------------|---------------------------------------------------------------------|
9+
| [snet-cli](https://pypi.org/project/snet-cli/) |Command line interface to interact with the SingularityNET platform |
1010

1111
## License
1212

@@ -16,7 +16,7 @@ This project is licensed under the MIT License - see the
1616
## Getting Started
1717

1818
The instruction down below describes the installation of the SingularityNET CLI.
19-
Please check our full [Documentation](http://snet-cli-docs.singularitynet.io/).
19+
Please check our full [Documentation](https://dev.singularitynet.io/docs/products/DecentralizedAIPlatform/CLI/).
2020

2121
### Prerequisites
2222

@@ -36,7 +36,7 @@ sudo apt-get install libudev-dev libusb-1.0-0-dev
3636
### Install snet-cli using pip
3737

3838
```bash
39-
$ pip3 install snet.cli
39+
$ pip3 install snet-cli
4040
```
4141

4242

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jsonschema==4.0.0
1818
eth-account==0.9.0
1919
trezor==0.13.8
2020
ledgerblue==0.1.48
21-
snet.contracts==0.1.1
21+
snet-contracts==0.2.1
2222
lighthouseweb3==0.1.4
23-
cryptography==43.0.3
23+
cryptography==43.0.3

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from snet.cli.utils.utils import compile_proto
88
from version import __version__
99

10-
PACKAGE_NAME = 'snet.cli'
10+
PACKAGE_NAME = 'snet-cli'
1111

1212

1313
this_directory = os.path.abspath(os.path.dirname(__file__))
@@ -50,8 +50,7 @@ def run(self):
5050
setup(
5151
name=PACKAGE_NAME,
5252
version=__version__,
53-
packages=find_namespace_packages(include=['snet.*']),
54-
namespace_packages=['snet'],
53+
packages=find_namespace_packages(include=['snet*']),
5554
url='https://github.com/singnet/snet-cli',
5655
author="SingularityNET Foundation",
5756
author_email="info@singularitynet.io",

snet/cli/resources/package.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

version.py

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

0 commit comments

Comments
 (0)