diff --git a/.circleci/config.yml b/.circleci/config.yml index 3848970..b955c87 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: executor: python/default steps: - checkout - - run: pip install --editable . + - run: pip install --editable ".[pymysql]" - run: name: make test-reesults dir command: | diff --git a/README.md b/README.md index a926d1a..0c7fe47 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Similar tools: → cd mariadb-sequential-partition-manager-py → python3 -m venv .venv → . .venv/bin/activate - → python3 -m pip install . + → python3 -m pip install ".[pymysql]" → tee /tmp/partman.conf.yml <= 1.0.2", "pyyaml"], + install_requires=["pyyaml"], + extras_require={"pymysql": ["PyMySQL >= 1.0.2"]}, packages=["partitionmanager"], entry_points={"console_scripts": ["partition-manager=partitionmanager.cli:main"]}, )