Siyuan Yan

Results 31 comments of Siyuan Yan

In the time being, I recommend using the following github action to build the binary and commit to your repo peoriodically or on manual trigger: ```yml name: Build Cargo Sweep...

Consider setting up [cargo-bininstall](https://github.com/ryankurte/cargo-binstall) too, after the CI is setup

@Alexhuszagh I met the same problem on my project, neither 0.2.4 nor the main branch (59ec530 2022-07-16) : ```text ❯ cross build -p server --target aarch64-unknown-linux-gnu Compiling sqlx-macros v0.6.0 Compiling...

The project is not open source, here is the docker file: ```Dockerfile FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu RUN apt-get update RUN apt-get install -y clang pkg-config libx11-dev libasound2-dev libudev-dev ```

@grantjenks Oh, I just saw this thread after I submitted #136 . What do you think of the pull request?

I can come up with type stubs for SortedDict later

@grantjenks I added a new stub file for `SortedDict`. > Do yours match theirs Yes! we were talking about the same thing in the discussion. There are [three ways](https://mypy.readthedocs.io/en/latest/stubs.html) to...

My bad! There are actually two typing backports. One is just called `typing`, which backports basic typing to python3.4. `typing-extensions` is for other later introduced functionalities. I noticed the appveyor...

From pytest's documentation: >Python 2.7 EOL has been reached in 2020, with the last release planned for mid-April, 2020. >Python 3.4 EOL has been reached in 2019, with the last...

@jayvdb thanks a lot for saving me time. I've been wondering why `tox` doesn't run anything on Windows and MacOS