Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite #483

Merged
merged 33 commits into from
Mar 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6d67fc4
Add rewrite foundation
cnpryer Mar 17, 2023
b86166e
Merge branch 'master' into rewrite
cnpryer Mar 17, 2023
e9bcb85
Prepare bin space
cnpryer Mar 17, 2023
ebbcc41
Add resources dir
cnpryer Mar 18, 2023
9519dfe
Update toml and venv tests
cnpryer Mar 18, 2023
471f5f4
Add Package::from_str implementation
cnpryer Mar 18, 2023
89f2127
Git init
cnpryer Mar 19, 2023
f6ef9a3
Bump pyproject-toml to 0.4.0
cnpryer Mar 19, 2023
2018743
Add find_venv_root
cnpryer Mar 20, 2023
3679271
Add VirtualEnvironment.is_activated
cnpryer Mar 20, 2023
9e4c1e7
Add ops with wrapped commands
cnpryer Mar 20, 2023
fecd46c
Update create project ops
cnpryer Mar 20, 2023
9b01c68
Add remove dependency ops
cnpryer Mar 20, 2023
859d73b
Add init and display version ops
cnpryer Mar 21, 2023
4078b3f
Update docs/design_doc.md
cnpryer Mar 21, 2023
8881659
Add clean project operation
cnpryer Mar 21, 2023
90e3387
Add run_command_str operation
cnpryer Mar 21, 2023
8091739
Propagate trailing command to operations
cnpryer Mar 21, 2023
31b7949
Include the mock project dist directory
cnpryer Mar 21, 2023
cdf16f6
Fix run_command_str operation
cnpryer Mar 22, 2023
81abad3
Add init and new project operations
cnpryer Mar 23, 2023
5bccecf
Add install operations
cnpryer Mar 23, 2023
fb8912b
Add add dependency operations
cnpryer Mar 23, 2023
4f7d7d7
Add wired bin space
cnpryer Mar 25, 2023
b89d0d8
Clean up
cnpryer Mar 25, 2023
6e0b8e7
Add venv.has_package
cnpryer Mar 25, 2023
97c9548
More clean up
cnpryer Mar 25, 2023
477c5ea
Update gha
cnpryer Mar 25, 2023
307e8a3
Resolve lints
cnpryer Mar 25, 2023
d91a36a
Add optional openssl
cnpryer Mar 26, 2023
c8da742
Rename resources to dev-resources
cnpryer Mar 26, 2023
3eb0c02
Always exit with code
cnpryer Mar 26, 2023
dcdc9d0
Resolve lints
cnpryer Mar 26, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
toolchain: stable
- uses: Swatinem/rust-cache@v1
- uses: actions/setup-python@v1
- name: Test
env:
HUAK_MUTE_COMMAND: 1
run: |
python -m venv .venv
cargo test --all-features -- --test-threads=1
- name: Build
run: cargo build --release
Expand Down
Loading