Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/faucet_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
- name: Install Python + Retrieve Poetry dependencies from cache
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"
cache: "poetry"
- name: Build a binary wheel and a source tarball
run: poetry build
Expand Down Expand Up @@ -533,7 +533,7 @@ jobs:
-H "Authorization: Bearer $SLACK_TOKEN" \
-H "Content-Type: application/json; charset=utf-8" \
-d "$(jq -n --arg channel "#ripplex-security" --arg text "$MSG" '{channel:$channel, text:$text}')" \
| jq -er '.ok' >/dev/null
| jq -er '.ok' >/dev/null

- name: Awaiting security approval
run: echo "Waiting for security team review"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

env:
PYTHON_VERSION: "3.8"
PYTHON_VERSION: "3.9"

steps:
- name: Checkout code
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- name: Checkout code
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [[Unreleased]]

### BREAKING CHANGE

- Dropped support for Python 3.8 (EOL October 2024). The minimum supported Python version is now 3.9.

## [[4.5.0]]

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The `xrpl-py` library is available on [PyPI](https://pypi.org/). Install with `p
pip3 install xrpl-py
```

The library supports [Python 3.8](https://www.python.org/downloads/) and later.
The library supports [Python 3.9](https://www.python.org/downloads/) and later.

[![Supported Versions](https://img.shields.io/pypi/pyversions/xrpl-py.svg)](https://pypi.org/project/xrpl-py)

Expand Down
609 changes: 8 additions & 601 deletions poetry.lock

Large diffs are not rendered by default.

9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ maintainers = [
{ name = "Phu Pham", email = "ppham@ripple.com" },
]
keywords = ["xrp", "xrpl", "cryptocurrency"]
requires-python = ">=3.8.1"
requires-python = ">=3.9"
dynamic = [ "dependencies" ]

[project.urls]
Expand All @@ -39,7 +39,7 @@ description = "A complete Python library for interacting with the XRP ledger"
packages = [{ include = "xrpl" }, { include = "LICENSE" }]

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
python = ">=3.9,<4.0"
base58 = "^2.1.0"
ECPy = "^1.2.5"
typing-extensions = "^4.13.2"
Expand All @@ -59,10 +59,7 @@ isort = "^5.11.5"
flake8-isort = "^6.0.0"
flake8-annotations = "^3.1.1"
flake8-absolute-import = "^1.0"
pydoclint = [
{ version = "<=0.5.12", python = "<3.9" },
{ version = "^0.5.13", python = ">=3.9" }
]
pydoclint = "^0.5.13"
sphinx-rtd-theme = "^3.0.2"
aiounittest = "^1.4.3"
coverage = "^7.2.7"
Expand Down