Skip to content

Commit

Permalink
Fix CI and drop Python3.5 support (jankrepl#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jankrepl authored Jul 9, 2021
1 parent 48484f9 commit a126fb3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ cache: pip
dist: xenial # required for python3.7

python:
- "3.5"
- "3.6"
- "3.7"

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def skip(app, what, name, obj, would_skip, options):


def setup(app):
app.add_stylesheet('css/custom.css') # adding custom styling
app.add_css_file('css/custom.css') # adding custom styling
app.connect("autodoc-skip-member", skip) # making sure __call__ is shown when implemented in child class


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
packages=find_packages(exclude=["tests"]),
license="Apache License 2.0",
install_requires=INSTALL_REQUIRES,
python_requires='>=3.5',
python_requires='>=3.6',
extras_require={
"dev": ["codecov", "flake8==3.7.9", "pydocstyle", "pytest>=4.6", "pytest-cov", "tox"],
"docs": ["sphinx", "sphinx_rtd_theme"],
Expand Down

0 comments on commit a126fb3

Please sign in to comment.