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