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

feat: support a new package type pypi #2142

Draft
wants to merge 25 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a284526
feat: support a new package type "pip"
suzuki-shunsuke Jul 29, 2023
c9b9352
fix: add pre-commit as testdata
suzuki-shunsuke Jul 29, 2023
a35410b
fix: add PYTHONPATH
suzuki-shunsuke Jul 29, 2023
d2e8908
refactor: remove an unused method
suzuki-shunsuke Jul 29, 2023
2f64023
feat: support getting versions from pypi.org
suzuki-shunsuke Jul 30, 2023
c6accc6
refactor: merge vesionSelector
suzuki-shunsuke Jul 30, 2023
d66ad19
feat(generate-registry): support pypi.org
suzuki-shunsuke Jul 30, 2023
a1312fe
ci: add tests for pip
suzuki-shunsuke Jul 30, 2023
7a7b207
ci: add test cases to windows test
suzuki-shunsuke Jul 30, 2023
da9a753
feat: add a link
suzuki-shunsuke Jul 30, 2023
7e96c04
fix: fix for windows
suzuki-shunsuke Jul 30, 2023
4fe9d69
fix: rename pip to pypi
suzuki-shunsuke Jul 30, 2023
76333b6
Merge branch 'main' into feat/pip-package
suzuki-shunsuke Jul 30, 2023
1ef7acc
ci: fix test
suzuki-shunsuke Jul 30, 2023
2af9538
docs: update JSON Schema
suzuki-shunsuke Jul 30, 2023
8c7ccbb
fix: get the latest version
suzuki-shunsuke Jul 30, 2023
1101c4e
fix: output name
suzuki-shunsuke Jul 30, 2023
bb7906c
fix(update-checksum): ignore pypi packages
suzuki-shunsuke Jul 30, 2023
d2ce04a
test: add a test
suzuki-shunsuke Jul 30, 2023
d5fb58f
Merge branch 'main' into feat/pip-package
suzuki-shunsuke Jul 30, 2023
ec2c3cb
fix(pypi): pass a package version
suzuki-shunsuke Jul 30, 2023
b53cfdb
ci: fix testdata
suzuki-shunsuke Jul 30, 2023
44eabdb
fix: fix log field name
suzuki-shunsuke Jul 30, 2023
c6e727d
Merge branch 'main' into feat/pip-package
suzuki-shunsuke Jul 30, 2023
0b55c2c
refactor: use convertStringsToVersions
suzuki-shunsuke Jul 30, 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
Prev Previous commit
Next Next commit
fix: fix for windows
  • Loading branch information
suzuki-shunsuke committed Jul 30, 2023
commit 7e96c04fd4fdcb9d6001d2bdd4753431b6276c3c
2 changes: 1 addition & 1 deletion pkg/exec/xsys_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import "errors"

var errXSysNotSuppported = errors.New("Windows doesn't support AQUA_EXPERIMENTAL_X_SYS_EXEC")

func (exe *Executor) ExecXSys(exePath string, args ...string) error {
func (exe *Executor) ExecXSysWithEnvs(exePath string, args, envs []string) error {
return errXSysNotSuppported
}