Skip to content

Commit

Permalink
chore: update github actions and docs to remove support for python 3.…
Browse files Browse the repository at this point in the history
…8, 3.9 (#151)
  • Loading branch information
fabclmnt authored Jan 30, 2025
1 parent 3b87aaa commit abc6198
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,13 @@ jobs:
make install-test
- name: Unit Tests
env:
YDATA_FABRIC_SDK_NO_ANALYTICS: "True"
run: |
make test
- name: Coverage Tests
env:
YDATA_FABRIC_SDK_NO_ANALYTICS: "True"
run: |
make test-cov
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

needs: package

Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

needs: compile-wheels

Expand All @@ -126,7 +126,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

needs: compile-wheels

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# YData Fabric SDK

[![pypi](https://img.shields.io/pypi/v/ydata-fabric-sdk)](https://pypi.org/project/ydata-fabric-sdk)
![Pythonversion](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)
![Pythonversion](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue)
[![downloads](https://pepy.tech/badge/ydata-fabric-sdk/month)](https://pepy.tech/project/ydata-fabric-sdk)

---
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![pypi](https://img.shields.io/pypi/v/ydata-fabric-sdk)](https://pypi.org/project/ydata-fabric-sdk)
![Pythonversion](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10-blue)
![Pythonversion](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue)
[![downloads](https://pepy.tech/badge/ydata-fabric-sdk/month)](https://pepy.tech/project/ydata-fabric-sdk)

<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=08dac575-f8f7-47d1-ad7d-58541aecd025" />
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ YData SDK is generally available through both Pypi and Conda allowing an easy pr
YData SDK is available for the public through a token-based authentication system. If you don’t have one yet, you can get your free license key during the installation process. You can check what features are available in the free version here.

##Installing the package
YData SDK supports python versions bigger than python 3.8, and can be installed in Windows, Linux or MacOS operating systems.
YData SDK supports python versions bigger than python 3.10, and can be installed in Windows, Linux or MacOS operating systems.

Prior to the package installation, it is recommended the creation of a virtual or conda environment:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
]
description = "YData SDK allows to use the *Data-Centric* tools from the YData ecosystem to accelerate AI development"
readme = "README.md"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.10,<3.13"
classifiers = [
"License :: OSI Approved :: MIT License",
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit abc6198

Please sign in to comment.