From ea39026e3e2dbb45f7f32248c9ad15feb07f5caa Mon Sep 17 00:00:00 2001 From: Edgar Date: Thu, 6 Jan 2022 13:35:56 +0000 Subject: [PATCH] :wrench: Install pip deps using requirements.txt --- .github/workflows/conan-pkg.yml | 2 +- .pylintrc | 2 ++ requirements.txt | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .pylintrc create mode 100644 requirements.txt diff --git a/.github/workflows/conan-pkg.yml b/.github/workflows/conan-pkg.yml index feda83e..e018cbf 100644 --- a/.github/workflows/conan-pkg.yml +++ b/.github/workflows/conan-pkg.yml @@ -43,7 +43,7 @@ jobs: - name: Install Conan run: | - pip install -U conan pyyaml + pip install -r requirements.txt conan profile new default --detect - name: Fix libstdc++11 diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..170e6b5 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,2 @@ +[MASTER] +disable=C0114,C0115,C0116 # missing-module-docstring \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..4931ea2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +conan +pyyaml \ No newline at end of file