From 4af0353a24c4ac4cb293ba82a3a6d289c6d0fbf1 Mon Sep 17 00:00:00 2001 From: Jim Myers Date: Sun, 26 Jan 2025 15:46:05 -0500 Subject: [PATCH] Bump python to version 2.1.0 --- README.md | 12 +++++++----- python/VERSION | 2 +- python/setup.py | 3 +-- python/src/flipside.py | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fb3d364..fb7eac8 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,11 @@ Programmatic access to the most reliable & comprehensive blockchain data in Web3 You've found yourself at the FlipsideCrypto SDK repository, the official SDK to programmatically query all of Flipside Crypto's data. ## 🧩 The Data + Flipside Crypto's Analytics Team has curated dozens of blockchain data sets with more being added each week. All tables available to query in Flipside's [Data Studio](https://flipsidecrypto.xyz) can be queried programmatically via our API and library of SDKs. ## 📖 Official Docs + [https://docs.flipsidecrypto.com/flipside-api/get-started](https://docs.flipsidecrypto.com/flipside-api/get-started) ## 🗝 Want access? Genrate an API Key for Free @@ -17,8 +19,8 @@ Get your [free API key here](https://flipsidecrypto.xyz/api-keys) ## SDKs -| Language | Version | Status | -| ------------------------ | ------- | ---------------------------------------------------------------------------------- | -| ✅ [Python](./python/) | 2.0.8 | [![tests](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_python.yml/badge.svg)](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_python.yml) | -| ✅ [JS/TypeScript](./js) | 2.0.1 | [![tests](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_js.yml/badge.svg)](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_js.yml) -| ✅ [R](./r/shroomDK/) | 0.2.2 | [Available on CRAN](https://cran.r-project.org/web/packages/shroomDK/shroomDK.pdf) | +| Language | Version | Status | +| ------------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| ✅ [Python](./python/) | 2.1.0 | [![tests](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_python.yml/badge.svg)](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_python.yml) | +| ✅ [JS/TypeScript](./js) | 2.0.1 | [![tests](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_js.yml/badge.svg)](https://github.com/FlipsideCrypto/sdk/actions/workflows/ci_js.yml) | +| ✅ [R](./r/shroomDK/) | 0.2.2 | [Available on CRAN](https://cran.r-project.org/web/packages/shroomDK/shroomDK.pdf) | diff --git a/python/VERSION b/python/VERSION index e8f41f0..50aea0e 100644 --- a/python/VERSION +++ b/python/VERSION @@ -1 +1 @@ -2.0.8 \ No newline at end of file +2.1.0 \ No newline at end of file diff --git a/python/setup.py b/python/setup.py index e2754fb..9187852 100644 --- a/python/setup.py +++ b/python/setup.py @@ -32,11 +32,10 @@ setup( "Intended Audience :: Developers", # Define that your audience are developers "License :: OSI Approved :: MIT License", # Again, pick a license "Operating System :: OS Independent", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ], dependency_links=[], - python_requires=">=3.7", + python_requires=">=3.8", ) diff --git a/python/src/flipside.py b/python/src/flipside.py index 077bc98..a5c05c3 100644 --- a/python/src/flipside.py +++ b/python/src/flipside.py @@ -11,7 +11,7 @@ from .rpc import RPC API_BASE_URL = "https://api-v2.flipsidecrypto.xyz" -SDK_VERSION = "2.0.4" +SDK_VERSION = "2.1.0" SDK_PACKAGE = "python" DEFAULT_DATA_SOURCE = "snowflake-default"