Skip to content

Commit

Permalink
primitive reqwest impl from last night few-guh state (#151)
Browse files Browse the repository at this point in the history
* reqwest

* ok this works!

* AH!

* AHA; clever work around using into-py-obj for json

* cleaned up

* added reqwest errors

* bytes and reqwest work in progress!

* fix clippy lints

* ok!

* preclippy

* cleaned up fspath

* reorg a bit

* clippy not windows

* reqwest native roots!

* features fix?

* ok fix arm!?

* whoops fix the stupid yaml thing
  • Loading branch information
jessekrubin authored Dec 20, 2024
1 parent a27380c commit c1a6bd4
Show file tree
Hide file tree
Showing 36 changed files with 2,413 additions and 150 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,29 @@ jobs:
permissions:
contents: read
packages: write # Required to upload docker images to ghcr

strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
manylinux: auto
- runner: ubuntu-latest
target: x86
manylinux: auto
- runner: ubuntu-latest
target: aarch64
manylinux: "2_28"
- runner: ubuntu-latest
target: armv7
manylinux: auto
- runner: ubuntu-latest
target: s390x
manylinux: auto
- runner: ubuntu-latest
target: ppc64le
manylinux: auto

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -49,7 +57,7 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
manylinux: ${{ matrix.platform.manylinux }} # SUPER WEIRD BUT ARRRRRRM IS A PITA
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
Loading

0 comments on commit c1a6bd4

Please sign in to comment.