Merge branch 'nullable-tx-hash' of github.com:moonstream-to/api into nullable-tx-hash

pull/1151/head
Andrey 2025-01-07 15:46:55 +02:00
commit b7c6e06c1c
14 zmienionych plików z 15 dodań i 13 usunięć

Wyświetl plik

@ -26,5 +26,5 @@ jobs:
TWINE_USERNAME: "__token__" TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM }} TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM }}
run: | run: |
python setup.py sdist bdist_wheel python -m build
twine upload dist/* twine upload dist/*

Wyświetl plik

@ -26,5 +26,5 @@ jobs:
TWINE_USERNAME: "__token__" TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONCRAWL }} TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONCRAWL }}
run: | run: |
python setup.py sdist bdist_wheel python -m build
twine upload dist/* twine upload dist/*

Wyświetl plik

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

Wyświetl plik

@ -26,5 +26,5 @@ jobs:
TWINE_USERNAME: "__token__" TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMDB }} TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMDB }}
run: | run: |
python setup.py sdist bdist_wheel python -m build
twine upload dist/* twine upload dist/*

Wyświetl plik

@ -26,5 +26,5 @@ jobs:
TWINE_USERNAME: "__token__" TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMDBV3 }} TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAMDBV3 }}
run: | run: |
python setup.py sdist bdist_wheel python -m build
twine upload dist/* twine upload dist/*

Wyświetl plik

@ -26,5 +26,5 @@ jobs:
TWINE_USERNAME: "__token__" TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM_TYPES }} TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM_TYPES }}
run: | run: |
python setup.py sdist bdist_wheel python -m build
twine upload dist/* twine upload dist/*

Wyświetl plik

@ -1 +1 @@
MOONSTREAM_CLIENT_VERSION = "0.1.1" MOONSTREAM_CLIENT_VERSION = "0.1.2"

Wyświetl plik

@ -22,7 +22,7 @@ setup(
"types-requests", "types-requests",
"types-dataclasses", "types-dataclasses",
], ],
"distribute": ["setuptools", "twine", "wheel"], "distribute": ["build", "twine"],
}, },
description="Moonstream: Open source blockchain analytics", description="Moonstream: Open source blockchain analytics",
long_description=long_description, long_description=long_description,

Wyświetl plik

@ -0,0 +1 @@
include moonstreamdbv3/version.txt

Wyświetl plik

@ -35,6 +35,6 @@ setup(
install_requires=["alembic", "psycopg2-binary", "sqlalchemy>=2.0.4"], install_requires=["alembic", "psycopg2-binary", "sqlalchemy>=2.0.4"],
extras_require={ extras_require={
"dev": ["black", "isort", "mypy"], "dev": ["black", "isort", "mypy"],
"distribute": ["setuptools", "twine", "wheel"], "distribute": ["build", "twine"],
}, },
) )

Wyświetl plik

@ -0,0 +1 @@
include moonstreamtypes/version.txt

Wyświetl plik

@ -1 +1 @@
0.0.9 0.0.10

Wyświetl plik

@ -34,10 +34,10 @@ setup(
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[
"moonstreamdb>=0.4.5", "moonstreamdb>=0.4.5",
"moonstreamdb-v3>=0.1.2", "moonstreamdb-v3>=0.1.3",
], ],
extras_require={ extras_require={
"dev": ["black", "isort", "mypy"], "dev": ["black", "isort", "mypy"],
"distribute": ["setuptools", "twine", "wheel"], "distribute": ["build", "twine"],
}, },
) )