Skip to content

Commit

Permalink
Restrict several versions to improve pip version resolution
Browse files Browse the repository at this point in the history
(cherry picked from commit c205569)
(cherry picked from commit 2ac7c6f)
  • Loading branch information
1kastner committed Dec 10, 2023
1 parent 6f459ba commit cdb6ba2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'peewee >=3', # ORM mapper

# documentation - decorators used for sphinx but are part of the source code delivered to customers
'enum_tools >=0.7', # used for documenting enums via decorators
'enum_tools >=0.7', # used for documenting enums via decorators - previous versions are not compatible with this code base

Check notice on line 38 in setup.py

View check run for this annotation

codefactor.io / CodeFactor

setup.py#L38

Line too long (131/121) (line-too-long)

# for creating the visuals
'matplotlib', # default plots such as bar charts, pie charts, etc.
Expand All @@ -55,11 +55,11 @@
'nbconvert',

# build documentation
'sphinx', # build the documentation
'sphinx >=6.2', # build the documentation - restrict version to improve pip version resolution
'sphinx-rtd-theme', # adding the nice sphinx theme
'sphinx-toolbox', # dependency of enum_tools, we got this as a present
'sphinx-toolbox >=3', # dependency of enum_tools, we got this as a present - restrict version to improve pip version resolution

Check notice on line 60 in setup.py

View check run for this annotation

codefactor.io / CodeFactor

setup.py#L60

Line too long (140/121) (line-too-long)
'myst-parser', # for Contributing.md
'sphinxcontrib-bibtex', # a good help for citing
'sphinxcontrib-bibtex >=2.4', # a good help for citing - restrict version to improve pip version resolution
'nbsphinx', # use Jupyter Notebooks in the documentation
'ipython', # for setting up the pygments_lexer
'ipykernel', # for allowing nbsphinx to execute the Jupyter Notebooks
Expand Down

0 comments on commit cdb6ba2

Please sign in to comment.