Skip to content

Commit

Permalink
fixed deps (#85)
Browse files Browse the repository at this point in the history
* fixed deps

* no more lower versions of Python

* no more lower versions of Python

* trying stable rust

* fixing old deps

* fixing old deps

* fixing imports

* clang

* fixing xlsx

* fixing more xlsx crate issues

* fixing more xlsx crate issues

* fixing more xlsx crate issues

* removing xlxs support

* removing xlxs support

* ready to release

* updated lock

* trying to support 3.8

* trying to support more python versions

* updated lock

* no 3.12 cuz maturin issues

* updated lock

---------

Co-authored-by: Shan Tharanga <[email protected]>
  • Loading branch information
ShanWeera and shantharanga authored Sep 3, 2024
1 parent b9d1ceb commit 3cc713b
Show file tree
Hide file tree
Showing 8 changed files with 396 additions and 645 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
Expand All @@ -29,15 +29,15 @@ jobs:
pip install poetry
poetry install
- name: Install latest nightly
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: stable
override: true

- name: Install LLVM and Clang
if: matrix.os == 'windows-latest'
uses: KyleMayes/install-llvm-action@32c4866ebb71e0949e8833eb49beeebed48532bd
uses: KyleMayes/install-llvm-action@v2
with:
version: "13.0"
directory: ${{ runner.temp }}/llvm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
Expand All @@ -30,15 +30,15 @@ jobs:
pip install poetry
poetry install
- name: Install latest nightly
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: stable
override: true

- name: Install LLVM and Clang
if: matrix.os == 'windows-latest'
uses: KyleMayes/install-llvm-action@32c4866ebb71e0949e8833eb49beeebed48532bd
uses: KyleMayes/install-llvm-action@v2
with:
version: "13.0"
directory: ${{ runner.temp }}/llvm
Expand Down
Loading

0 comments on commit 3cc713b

Please sign in to comment.