Skip to content

Commit

Permalink
Merge pull request #47 from s-t-e-v-e-n-k/fix-requirement
Browse files Browse the repository at this point in the history
Fix Pygemnts requirement in setup.py
  • Loading branch information
thombashi committed Feb 18, 2023
2 parents 8d11b62 + 93d1e19 commit b483854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -40,7 +40,7 @@ def get_release_command_class() -> Dict[str, setuptools.Command]:
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_requires = [line.strip() for line in f if line.strip()]

CLI_OPT_REQUIRES = ["loguru>=0.4.1,<1", "Pygments>=2.1<3"]
CLI_OPT_REQUIRES = ["loguru>=0.4.1,<1", "Pygments>=2.1,<3"]

setuptools.setup(
name=MODULE_NAME,
Expand Down

0 comments on commit b483854

Please sign in to comment.