Skip to content

Commit 91da7c6

Browse files
author
Andrey
committed
Merge branch 'main' into add-raw-transactions
2 parents 96fd9a1 + 4d6f718 commit 91da7c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1653
-729
lines changed

.github/workflows/release.clients.python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: "__token__"
2727
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM }}
2828
run: |
29-
python setup.py sdist bdist_wheel
29+
python -m build
3030
twine upload dist/*

.github/workflows/release.mooncrawl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: "__token__"
2727
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONCRAWL }}
2828
run: |
29-
python setup.py sdist bdist_wheel
29+
python -m build
3030
twine upload dist/*

.github/workflows/release.moonstreamapi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
defaults:
99
run:
10-
working-directory: backend
10+
working-directory: moonstreamapi
1111

1212
jobs:
1313
publish:
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: "__token__"
2727
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMAPI }}
2828
run: |
29-
python setup.py sdist bdist_wheel
29+
python -m build
3030
twine upload dist/*

.github/workflows/release.moonstreamdb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: "__token__"
2727
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMDB }}
2828
run: |
29-
python setup.py sdist bdist_wheel
29+
python -m build
3030
twine upload dist/*

.github/workflows/release.moonstreamdbv3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: "__token__"
2727
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMDBV3 }}
2828
run: |
29-
python setup.py sdist bdist_wheel
29+
python -m build
3030
twine upload dist/*

.github/workflows/release.types.python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
TWINE_USERNAME: "__token__"
2727
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM_TYPES }}
2828
run: |
29-
python setup.py sdist bdist_wheel
29+
python -m build
3030
twine upload dist/*

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.idea/
33
.vscode/
44
.DS_Store
5+
.aider*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MOONSTREAM_CLIENT_VERSION = "0.1.1"
1+
MOONSTREAM_CLIENT_VERSION = "0.1.2"

clients/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"types-requests",
2323
"types-dataclasses",
2424
],
25-
"distribute": ["setuptools", "twine", "wheel"],
25+
"distribute": ["build", "twine"],
2626
},
2727
description="Moonstream: Open source blockchain analytics",
2828
long_description=long_description,

crawlers/deploy/deploy-basic.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ echo -e "${PREFIX_INFO} Installing Python dependencies"
138138
echo
139139
echo
140140
echo -e "${PREFIX_INFO} Install checkenv"
141-
HOME=/home/ubuntu /usr/local/go/bin/go install github.com/bugout-dev/checkenv@latest
141+
HOME=/home/ubuntu /usr/local/go/bin/go install github.com/bugout-dev/checkenv@v0.0.4
142142

143143
echo
144144
echo

0 commit comments

Comments
 (0)