Skip to content

Commit

Permalink
Merge pull request #57 from 0x26res/finalize-abi-wheels
Browse files Browse the repository at this point in the history
Finalize abi wheels
  • Loading branch information
0x26res authored Oct 10, 2024
2 parents e9aa7c7 + d1000e0 commit 7c01873
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 16 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ on:
permissions:
contents: read

env:
PYTHON_VERSION: '3.10'

jobs:
linux:
runs-on: ${{ matrix.platform.runner }}
Expand All @@ -37,7 +40,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: ${{ env.PYTHON_VERSION }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: mixed-line-ending
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.6.7
rev: v0.6.9
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -34,6 +34,6 @@ repos:
args:
- "--fix"
- repo: https://github.com/python-poetry/poetry
rev: 1.8.3
rev: 1.8.0
hooks:
- id: poetry-check
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ptarslib"
version = "0.0.2"
version = "0.0.3"
authors = ["0x26res <0x26res@gmail.net>"]
edition = "2021"
description = "Fast python conversion from protobuf to arrow using rust"
Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ dependencies = [

[tool.poetry]
name = "ptars"
version = "0.0.2"
version = "0.0.3"
description = "Convert from protobuf to arrow and back in rust"
authors = ["Tradewell Tech <engineering@tradewelltech.co>"]
maintainers = ["0x26res <0x26res@gmail.com>"]
packages = [ { include = "ptars", from = "python" } ]
include = ["ptars/*", "ptarslib/*", "ptarslib/src/*"]
packages = [{ include = "ptars", from = "python" }]
include = ["ptars/*", "ptarslib/*", "ptarslib/src/*"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/tradewelltech/ptars"
Expand Down Expand Up @@ -82,7 +82,7 @@ features = ["pyo3/extension-module"]
[tool.isort]
profile = "black"
src_paths = ["ptars", "tests"]
known_first_party = ["ptars", "ptars_protos" ]
known_first_party = ["ptars", "ptars_protos"]
skip = [".gitignore"]

[tool.bandit]
Expand Down

0 comments on commit 7c01873

Please sign in to comment.