Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support python 3.11 #350

Merged
merged 7 commits into from
May 11, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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
5 changes: 5 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,17 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
- if: matrix.os == 'macos-latest' && matrix.python-version == '3.11'
name: Install build tools
run: |
brew install automake
- name: Install dependencies
run: pip install tox==3.25.1
- name: Unit Tests
Expand Down
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 `3.8`, `3.9` or `3.10`):
Ensure you have Python (version `3.8`, `3.9`, `3.10`, or `3.11`):

``` bash
pip3 install cosmpy
Expand Down
37 changes: 8 additions & 29 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System",
Expand All @@ -32,7 +33,7 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
python = ">=3.8,<4.0"
jrriehl marked this conversation as resolved.
Show resolved Hide resolved
ecdsa = "*"
bech32 = "*"
requests = "*"
Expand Down