Skip to content

Commit

Permalink
Prospective fix for pipenv errors about invalid specifiers
Browse files Browse the repository at this point in the history
PEP 508 requires a comparator for version_one, so specify some.
  • Loading branch information
tronical committed Jun 27, 2023
1 parent fc1570b commit 246541f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions api/cpp/docs/Pipfile
Expand Up @@ -9,13 +9,13 @@ verify_ssl = true
[dev-packages]

[packages]
breathe = "4.33.1"
sphinx = "4.5.0"
exhale = "0.2.4"
myst_parser = "0.17.2"
sphinx-markdown-tables = "0.0.15"
furo = "2022.12.7"
sphinxcontrib-jquery = "4.1"
breathe = ">=4.33.1"
sphinx = ">=4.5.0"
exhale = ">=0.2.4"
myst_parser = ">=0.17.2"
sphinx-markdown-tables = ">=0.0.15"
furo = ">=2022.12.7"
sphinxcontrib-jquery = ">=4.1"

[requires]
python_version = "3"
10 changes: 5 additions & 5 deletions docs/language/Pipfile
Expand Up @@ -9,11 +9,11 @@ verify_ssl = true
[dev-packages]

[packages]
sphinx = "4.5.0"
myst_parser = "0.17.2"
sphinx-markdown-tables = "0.0.15"
furo = "2022.12.7"
sphinxcontrib-jquery = "4.1"
sphinx = ">=4.5.0"
myst_parser = ">=0.17.2"
sphinx-markdown-tables = ">=0.0.15"
furo = ">=2022.12.7"
sphinxcontrib-jquery = ">=4.1"

[requires]
python_version = "3"

0 comments on commit 246541f

Please sign in to comment.