Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5

with:
python-version: '>=3.9 <3.12'
Comment on lines +15 to +16
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix Python version specification syntax for GitHub Actions.

The actions/setup-python action doesn't support version ranges. Use a specific version or a version wildcard instead.

Apply this diff to fix the syntax:

        with:
-          python-version: '>=3.9 <3.12'
+          python-version: '3.9'  # or use '3.x' to get the latest Python 3
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
with:
python-version: '>=3.9 <3.12'
with:
python-version: '3.9' # or use '3.x' to get the latest Python 3

- name: Install poetry
run: python -m pip install poetry
- name: Cache the virtualenv
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file.

## [1.8.2] - 2024-12-13
### Changed
- Updated `protobuf` dependency version to make it more flexible

## [1.8.1] - 2024-12-04
### Changed
Expand Down
2 changes: 1 addition & 1 deletion buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ managed:
plugins:
- remote: buf.build/protocolbuffers/python:v26.1
out: ./pyinjective/proto/
- remote: buf.build/grpc/python:v1.65.4
- remote: buf.build/grpc/python:v1.65.5
out: ./pyinjective/proto/
inputs:
- module: buf.build/cosmos/cosmos-proto
Expand Down
Loading
Loading