Bump python to version 2.1.0

This commit is contained in:
Jim Myers 2025-01-26 15:46:05 -05:00
parent ae761cdf65
commit 4af0353a24
4 changed files with 10 additions and 9 deletions

View File

@ -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
@ -18,7 +20,7 @@ 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)
| ------------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| ✅ [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) |

View File

@ -1 +1 @@
2.0.8
2.1.0

View File

@ -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",
)

View File

@ -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"