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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist -i 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.11
args: --release --out dist -i 3.10 3.11 3.12 3.13 3.14 pypy3.11
sccache: "true"
manylinux: auto
- name: Install and test
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
rust-toolchain: stable
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist -i 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.11
args: --release --out dist -i 3.10 3.11 3.12 3.13 3.14 pypy3.11
- uses: uraimo/run-on-arch-action@v3.1.0
if: matrix.target != 'ppc64'
name: Install built wheel
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
rust-toolchain: stable
target: ${{ matrix.target }}
manylinux: musllinux_1_2
args: --release --out dist -i 3.9 3.10 3.11 3.12 3.13 3.14
args: --release --out dist -i 3.10 3.11 3.12 3.13 3.14
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
rust-toolchain: stable
target: ${{ matrix.platform.target }}
manylinux: musllinux_1_2
args: --release --out dist -i 3.9 3.10 3.11 3.12 3.13 3.14
args: --release --out dist -i 3.10 3.11 3.12 3.13 3.14
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
Expand Down Expand Up @@ -196,8 +196,8 @@ jobs:
strategy:
matrix:
py:
- { i: "3.9 3.10 3.11 3.12 3.13 3.14", py: "3.9" }
- { i: "pypy3.11 pypy3.11 3.11 3.12 3.13 3.14", py: "pypy3.11" }
- { i: "3.10 3.11 3.12 3.13 3.14", py: "3.10" }
- { i: "pypy3.11 3.11 3.12 3.13 3.14", py: "pypy3.11" }
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ coverage.xml

# Sphinx documentation
docs/_build/
site/

# PyCharm
.idea/
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ b'data to be encoded'

## Benchmarks

![Benchmarks](docs/benchmarks.svg)
![Benchmarks](benchmarks.svg)

```
╭──────────────────────────────────────── benchdiff ────────────────────────────────────────╮
Expand Down
3 changes: 3 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ theme:
icon: lucide/moon
name: Switch to light mode

icon:
repo: simple/github

repo_name: aminalaee/base64-utils
repo_url: https://github.com/aminalaee/base64-utils
edit_uri: ""
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ name = "base64_utils"
readme = "README.md"
description = "Fast, drop-in replacement for Python's base64 module, powered by Rust."
authors = [{ name = "Amin Alaee", email = "mohammadamin.alaee@gmail.com" }]
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
Loading