Skip to content

Commit

Permalink
Maybe fix python 3.13?
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Dec 15, 2024
1 parent 4251370 commit 41a5918
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maturin_upload_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.13'

- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.13'
architecture: ${{ matrix.target }}

- name: Build wheels
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.13'

- name: Build wheels
uses: PyO3/maturin-action@v1
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]

### Added

- Prebuilt binaries for Python 3.13.

### Fixed

- Fix some typos
Expand Down
2 changes: 1 addition & 1 deletion src/rs/checksum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ mod tests {

println!(" Reading...");

let bin_bytes = fs::read(&bin_path.path()).unwrap();
let bin_bytes = fs::read(bin_path.path()).unwrap();

println!(" Calculating checksum...");
let checksum = super::calculate_checksum(&bin_bytes, kind).unwrap();
Expand Down

0 comments on commit 41a5918

Please sign in to comment.