Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
abd0fa1
add experimental pypi support
e8035669 Mar 12, 2025
ba65eba
Merge branch 'main' into pypi_support
e8035669 Mar 12, 2025
4ff8d8e
[fix] downgrade indexmap from 2.8.0 to 2.7.1, priority-queue from 2.2…
e8035669 Mar 12, 2025
ef692fa
update to rust 1.83.0
e8035669 Mar 13, 2025
f2b8c83
output message minor fix
e8035669 Mar 13, 2025
9446bf7
apply suggestions from cargo-fmt and cargo-clippy
e8035669 Mar 13, 2025
01fd1e0
make `--experimental-pypi-support` conflict with `--ignore-pypi-errors`
e8035669 Mar 13, 2025
a31df5c
[WIP] add test to check pypi-support is work, add sdists test
e8035669 Mar 15, 2025
cc98d5a
[WIP] fix tests in windows
e8035669 Mar 15, 2025
d073dbd
[feat] add reproducible test
e8035669 Mar 15, 2025
545e1ea
try reduce test parallel
e8035669 Mar 15, 2025
fcadc4c
Merge branch 'main' into pypi_support
e8035669 Mar 18, 2025
c18f239
[feat] use flat index instead of simple index, replace dependency to…
e8035669 Mar 18, 2025
b755a51
[feat] revert to use tokio-tar
e8035669 Mar 18, 2025
29120e4
[fix] improve error message when project contains a package without w…
e8035669 Mar 18, 2025
7974bc2
Merge branch 'main' into pypi_support
e8035669 Mar 22, 2025
c868e2e
[fix] disable test parallel when ci testing
e8035669 Mar 27, 2025
b3897b6
Merge branch 'main' into pypi_support
e8035669 Apr 2, 2025
2d27fe8
[WIP] apply some minor suggestions
e8035669 Apr 2, 2025
4733c20
feat: remove experimental flag, merge pypi tests with exist tests, ad…
e8035669 Apr 4, 2025
005fa99
review
pavelzw Apr 4, 2025
903f33b
bump package version, add to readme
pavelzw Apr 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
with:
key: tests
- name: Run test
run: pixi run test --color always${{ startsWith(matrix.os, 'ubuntu') && ' --no-default-features --features rustls-tls' || '' }}
run: pixi run test --color always${{ startsWith(matrix.os, 'ubuntu') && ' --no-default-features --features rustls-tls' || '' }} -- --test-threads=4

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I edited CI script to reduce parallel test, or it would make too many requests to download packages at the same time.

Loading