Merge branch 'main' into nullable-tx-hash

pull/1151/head^2
Andrey Dolgolev 2025-01-07 15:24:32 +02:00 zatwierdzone przez GitHub
commit c533e58b18
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
14 zmienionych plików z 15 dodań i 13 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

@ -26,5 +26,5 @@ jobs:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_MOONSTREAM_TYPES }}
run: |
python setup.py sdist bdist_wheel
python -m build
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-dataclasses",
],
"distribute": ["setuptools", "twine", "wheel"],
"distribute": ["build", "twine"],
},
description="Moonstream: Open source blockchain analytics",
long_description=long_description,

Wyświetl plik

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

Wyświetl plik

@ -1 +1 @@
0.1.4
0.1.4

Wyświetl plik

@ -35,6 +35,6 @@ setup(
install_requires=["alembic", "psycopg2-binary", "sqlalchemy>=2.0.4"],
extras_require={
"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,
install_requires=[
"moonstreamdb>=0.4.5",
"moonstreamdb-v3>=0.1.2",
"moonstreamdb-v3>=0.1.3",
],
extras_require={
"dev": ["black", "isort", "mypy"],
"distribute": ["setuptools", "twine", "wheel"],
"distribute": ["build", "twine"],
},
)