Skip to content

Commit

Permalink
Fixed sphinx versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tikhomirovd committed Nov 14, 2023
1 parent 18280fe commit 65fed32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --no-dev
poetry install
- name: Run pre-commit checks
run: poetry run pre-commit run --all-files
- name: Run tests
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ scipy = [

matplotlib = [
{ version = ">=3.0.0, <=3.7.3", python = "<3.9" },
{ version = ">=3.0.0, <=3.8.1", python = ">=3.9, <3.11" }]
{ version = ">=3.0.0, <=3.8.1", python = ">=3.9, <3.11" }
]

faiss-cpu = ">=1.6.0, <=1.7.4"

Expand All @@ -55,7 +56,10 @@ faiss-cpu = ">=1.6.0, <=1.7.4"
jupyter = "^1.0.0"
pytest = "^7.4.3"

sphinx = { version = "^7.2.6", python = ">=3.9, <3.11" }
sphinx = [
{ version = "^7.2.6", python = ">=3.9, <3.11" },
{ version = "<=7.1.0", python = "<=3.9" },
]
nbsphinx = "*"
nbsphinx_link = "*"
sphinx_autodoc_typehints = "*"
Expand Down

0 comments on commit 65fed32

Please sign in to comment.