From 85a7ce8338ba2885731fb1138bcb01356319538b Mon Sep 17 00:00:00 2001 From: Lev Gorodetskii Date: Mon, 24 Jun 2024 14:48:33 -0300 Subject: [PATCH] Fix Google Colab compatibility (#369) --- CHANGELOG.md | 6 ++++++ README.md | 14 +++++++++----- poetry.lock | 2 +- pyproject.toml | 4 ++-- 4 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f259192d..205e4873 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [3.13.1](https://github.com/baking-bad/pytezos/compare/3.13.0...3.13.1) (2024-06-24) + +### Fixed + +* Fixed Google Colab installation + ## [3.13.0](https://github.com/baking-bad/pytezos/compare/3.12.1...3.13.0) (2024-06-24) ### Added diff --git a/README.md b/README.md index 7649bc35..b5d4976b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,15 @@ # PyTezos -[![PyPI version](https://badge.fury.io/py/pytezos.svg?)](https://badge.fury.io/py/pytezos) -[![Tests](https://github.com/baking-bad/pytezos/workflows/Tests/badge.svg?)](https://github.com/baking-bad/pytezos/actions?query=workflow%3ATests) -[![Docker images](https://github.com/baking-bad/pytezos/workflows/Dockerhub/badge.svg?)](https://hub.docker.com/r/bakingbad/pytezos) -[![Made With](https://img.shields.io/badge/made%20with-python-blue.svg?)](ttps://www.python.org) -[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![Twitter](https://badgen.net/badge/icon/TezosBakingBad?icon=twitter&label=)](https://twitter.com/TezosBakingBad) +[![Monthly downloads](https://static.pepy.tech/badge/pytezos/month)](https://pepy.tech/project/pytezos) +[![GitHub stars](https://img.shields.io/github/stars/baking-bad/pytezos?color=2c2c2c&style=plain)](https://github.com/baking-bad/pytezos) +[![Python Version](https://img.shields.io/pypi/pyversions/pytezos?color=2c2c2c)](https://www.python.org) +
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/baking-bad/pytezos/master?filepath=michelson_quickstart.ipynb) +[![License: MIT](https://img.shields.io/github/license/baking-bad/pytezos?color=2c2c2c)](https://github.com/baking-bad/pytezos/blob/next/LICENSE) +[![Latest release](https://img.shields.io/github/v/release/baking-bad/pytezos?label=version&color=2c2c2c)](https://github.com/baking-bad/pytezos/releases) +[![GitHub issues](https://img.shields.io/github/issues/baking-bad/pytezos?color=2c2c2c)](https://github.com/baking-bad/pytezos/issues) +[![GitHub pull requests](https://img.shields.io/github/issues-pr/baking-bad/pytezos?color=2c2c2c)](https://github.com/baking-bad/pytezos/pulls) * RPC query engine * Cryptography diff --git a/poetry.lock b/poetry.lock index 11215ee6..3545f4ac 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3470,4 +3470,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [metadata] lock-version = "2.0" python-versions = ">=3.8.1,<3.13" -content-hash = "fc385b9dd21fb36686143c7391b4107aafb72a1200ccc5faae055ae4e8cee45d" +content-hash = "c3e0ae0b3597332381839c46267ae285f0ea4979bc2c31cbc66b067b28282f65" diff --git a/pyproject.toml b/pyproject.toml index 9376777d..a9a7a58a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytezos" -version = "3.13.0" +version = "3.13.1" description = "Python toolkit for Tezos" license = "MIT" authors = [ @@ -52,7 +52,7 @@ fastecdsa = ">=2.2.3" jsonschema = ">=4.3.2" mnemonic = ">=0.21" netstruct = ">=1.1.2" -notebook = "^6.5.6" +notebook = ">=6.5,<7" ply = ">=3.11" py-ecc = ">=7.0.0" pysodium = ">=0.7.10"