Skip to content

Commit

Permalink
Merge pull request #3 from nvdnc/ip/python-3.12.3
Browse files Browse the repository at this point in the history
bump: upgrade python to 3.12.3
  • Loading branch information
parrotmac committed May 6, 2024
2 parents 7508aff + 4840c0f commit 27edeba
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11.6'
python-version: '3.12.3'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11.6'
python-version: '3.12.3'
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -102,7 +102,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11.6'
python-version: '3.12.3'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
poetry 1.6.1
poetry 1.8.2
python 3.12.3
11 changes: 10 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
deps:
[macos]
platform_deps:
brew install cmake automake autoconf

[linux]
platform_deps:
echo "No platform_deps known"

deps: platform_deps
cargo install cross
poetry install

build-x86-linux-musl:
RUSTFLAGS="-C target-feature=-crt-static" cross build --target x86_64-unknown-linux-musl --release
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
version = "0.0.5"
version = "0.0.6"

[tool.maturin]
features = ["pyo3/extension-module"]

[tool.poetry]
name = "linen_closet"
version = "0.0.5"
version = "0.0.6"
description = "A Google Sheets bulk download and caching library."
authors = [
"Isaac Parker <isaac@linux.com>"
Expand Down
2 changes: 1 addition & 1 deletion src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use futures_retry::{RetryPolicy, StreamRetryExt};


use std::fs::File;
use std::io::{Cursor};
use std::io::Cursor;
use anyhow::{Context, Error, Result};
use aws_sdk_s3::config::Region;
use aws_sdk_s3::primitives::ByteStream;
Expand Down

0 comments on commit 27edeba

Please sign in to comment.