Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
02a9298
Fixed protos generation (TODO IBC protos)
MissingNO57 Aug 19, 2025
e461eb0
gogo proto fix
MissingNO57 Aug 20, 2025
64939ca
Merge branch 'main' of github.com:fetchai/cosmpy into feat/cosmos_sdk…
MissingNO57 Nov 13, 2025
3b640bb
IBC protos fix
MissingNO57 Nov 13, 2025
b342d2e
IBC fixes and disabled integration tests
MissingNO57 Nov 14, 2025
1a47cca
Fixes
MissingNO57 Nov 14, 2025
273024f
Lint
MissingNO57 Nov 14, 2025
8946eea
Mypy fix
MissingNO57 Nov 14, 2025
d804abd
Fixes and rework
MissingNO57 Nov 14, 2025
1a60462
Test fix
MissingNO57 Nov 14, 2025
922b72d
Tests
MissingNO57 Nov 14, 2025
7dfe64e
Black fix
MissingNO57 Nov 14, 2025
b202a51
lint fixes
MissingNO57 Nov 14, 2025
0542107
docs
MissingNO57 Nov 14, 2025
8cebe9c
dos
MissingNO57 Nov 14, 2025
f5ef414
SPelling fix
MissingNO57 Nov 14, 2025
d09299a
Legacy support
MissingNO57 Nov 17, 2025
126c5a2
Fixes
MissingNO57 Nov 17, 2025
5f9ac06
Lint fix
MissingNO57 Nov 17, 2025
31a9583
Docs fix
MissingNO57 Nov 17, 2025
94aff5b
feat: Docker localnet for integration tests (#425)
MissingNO57 Dec 2, 2025
8ffff11
refactor: Changed fetchd docker checkout to 0.20 feature branch (#426)
MissingNO57 Dec 4, 2025
2acdd32
chore: add history entry and bump version to 0.12.0-rc0 for release (…
MissingNO57 Dec 5, 2025
321e311
Merge branch 'main' into feat/cosmos_sdk_0_53
MissingNO57 Dec 8, 2025
785a179
chore: add history entry and bump version to 0.12.0rc0 for release (#…
MissingNO57 Dec 8, 2025
c92e0cd
fix: Init files (#430)
MissingNO57 Dec 18, 2025
89539d8
chore: add history entry and bump version to 0.12.0rc1 for release (#…
MissingNO57 Dec 18, 2025
f0f19b8
Merge branch 'feat/cosmos_sdk_0_53' into feat/final_touches
MissingNO57 May 18, 2026
d2cdc2e
fix: tox, poetry, liccheck, safety
MissingNO57 May 18, 2026
b010f45
fix: Removed Python 3.9
MissingNO57 May 18, 2026
e2bbc3d
fix: Python 3.9 removed from ci
MissingNO57 May 18, 2026
9f01951
fix: fetchd in ci
MissingNO57 May 18, 2026
4bab6ae
fix: pipenv lock
MissingNO57 May 18, 2026
f423e0b
poetry lock fix
MissingNO57 May 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs_pr_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
fetch-depth: 0

- name: Use python 3.9
- name: Use python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.10'

- name: Install Dependencies
run: cd docs && pip3 install pipenv && pipenv install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- name: Run release script
env:
PYPI_USERNAME: __token__
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
os:
- ubuntu-latest
python-version:
- '3.9'
- '3.10'
tox-job:
- black-check
- isort-check
Expand Down Expand Up @@ -63,7 +63,6 @@ jobs:
- macos-latest
- windows-latest
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
Expand All @@ -90,7 +89,7 @@ jobs:
os:
- ubuntu-latest
python-version:
- '3.9'
- '3.10'
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
Expand All @@ -107,7 +106,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: fetchai/fetchd
ref: feat/remove_liquid_module
ref: fix/docker_compose_genesis
path: repo-docker
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -148,7 +147,7 @@ jobs:
- windows-latest
- macos-latest
python-version:
- '3.9'
- '3.10'
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

## <a name="setup"></a> Setting up a New Development Environment

1. Ensure you have Python (version `3.9`, `3.10`, `3.11`, `3.12` or `3.13`) and [`poetry`][poetry].
1. Ensure you have Python (version `3.10`, `3.11`, `3.12` or `3.13`) and [`poetry`][poetry].

2. ``` shell
make new-env
Expand Down
8 changes: 8 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release History

## 0.12.0rc1

- fix: Init files

## 0.12.0rc0

- feat: Cosmos SDK v0.53.4

## 0.11.2

- feat: Ability to use Cosmos SDK bcrypt armored key files
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ COSMOSPROTO_URL := https://github.com/cosmos/cosmos-proto
COSMOSPROTO_VERSION := v1.0.0-beta.5
COSMOSPROTO_DIR := build/cosmos-proto

PY_GOOGLEAPIS_ROOT := $(shell python -c "import importlib.util, pathlib, sys; s=importlib.util.find_spec('google.api'); print(pathlib.Path(next(iter(s.submodule_search_locations))).parents[1]) if s and s.submodule_search_locations else sys.stdout.write('')")
PY_GOOGLEAPIS_ROOT := $(shell python -c "import importlib.util, pathlib, sys; g=importlib.util.find_spec('google'); s=importlib.util.find_spec('google.api') if g else None; print(pathlib.Path(next(iter(s.submodule_search_locations))).parents[1]) if s and s.submodule_search_locations else sys.stdout.write('')")

COSMPY_PROTOS_DIR := cosmpy/protos
COSMPY_SRC_DIR := cosmpy
Expand Down
2 changes: 1 addition & 1 deletion docs/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ mkdocs-material = "*"
mkdocs-material-extensions = "*"

[requires]
python_version = "3.9"
python_version = "3.10"
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CosmPy is a Python library for interacting with Cosmos-based blockchain networks

## To install

Ensure you have Python (version between `3.9`, `3.10`, `3.11`, `3.12`, or `3.13`):
Ensure you have Python (version between `3.10`, `3.11`, `3.12`, or `3.13`):

``` bash
pip3 install cosmpy
Expand Down
102 changes: 35 additions & 67 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading