From cfbffe934dffa1de7f2a4074e79fad610972db7f Mon Sep 17 00:00:00 2001 From: BoazBD Date: Mon, 30 Dec 2024 14:53:07 +0000 Subject: [PATCH] move maturin to requirements.txt --- .github/workflows/python.yml | 1 - python/dev_requirements.txt | 1 - python/requirements.txt | 3 ++- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index cebe5fa996..11df78697a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -116,7 +116,6 @@ jobs: run: | source .env/bin/activate pip install -r requirements.txt - pip install -r dev-requirements.txt cd python/tests/ pytest --asyncio-mode=auto --html=pytest_report.html --self-contained-html diff --git a/python/dev_requirements.txt b/python/dev_requirements.txt index e912acca8c..de9db66844 100644 --- a/python/dev_requirements.txt +++ b/python/dev_requirements.txt @@ -1,4 +1,3 @@ -maturin==0.14.17 # higher version break the needs structure changes, the name of the project is not the same as the package name, and the naming both glide create a circular dependency - TODO: fix this pytest pytest-asyncio pytest-html diff --git a/python/requirements.txt b/python/requirements.txt index 847d44dc77..080c62b5b1 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -2,4 +2,5 @@ # This is necessary until the issue https://github.com/aboutcode-org/python-inspector/issues/197 is resolved. async-timeout>=4.0.2 typing-extensions>=4.8.0 -protobuf>=3.20 \ No newline at end of file +protobuf>=3.20 +maturin==0.14.17 # higher version break the needs structure changes, the name of the project is not the same as the package name, and the naming both glide create a circular dependency - TODO: fix this \ No newline at end of file