Mercurial > hg
diff Makefile @ 48842:649ff7f86f96
rust: enable Python 3 support unconditionally
Note: `cpython/python3-sys` is a default feature.
Differential Revision: https://phab.mercurial-scm.org/D12316
author | Simon Sapin <simon.sapin@octobus.net> |
---|---|
date | Thu, 03 Mar 2022 07:53:11 +0100 |
parents | 6387562e68b3 |
children | 8d7eaff92f9c |
line wrap: on
line diff
--- a/Makefile Thu Mar 03 09:45:21 2022 +0900 +++ b/Makefile Thu Mar 03 07:53:11 2022 +0100 @@ -151,12 +151,9 @@ $(MAKE) -f $(HGROOT)/contrib/Makefile.python PYTHONVER=$* PREFIX=$(HGPYTHONS)/$* python ) cd tests && $(HGPYTHONS)/$*/bin/python run-tests.py $(TESTFLAGS) -rust-tests: py_feature = $(shell $(PYTHON) -c \ - 'import sys; print(["python27-bin", "python3-bin"][sys.version_info[0] >= 3])') rust-tests: cd $(HGROOT)/rust/hg-cpython \ - && $(CARGO) test --quiet --all \ - --no-default-features --features "$(py_feature) $(HG_RUST_FEATURES)" + && $(CARGO) test --quiet --all --features "$(HG_RUST_FEATURES)" check-code: hg manifest | xargs python contrib/check-code.py