Closed betaBison closed 2 years ago
fixes #30
I tried (and failed) to fix Travis CI. You can see the documentation builds passing with the new build-docs workflow here: https://github.com/betaBison/bagpy/runs/7925454189?check_suite_focus=true
Anything I can do to push this pull request through @rahulbhadani ?
Thanks @rahulbhadani for maintaining bagpy over the years.
I'd like to add a dependency on bagpy in one of my projects, but the dependency on a pinned Sphinx version is incompatible with my other project dependencies.
This pull request:
extras_require
in setup.py. This means that normal users can still install usingpip install bagpy
, but development users can install withpip install -e .[dev]
to add all of the development dependencies in the extra packages to be able to build the docs.matplotlib>=3.3.1
was incompatible with Python 3.5)Note: I didn't know how to test the
.Travis.yml
before creating a pull request, so please let me know how to verify the install update I made to it.