Skip to content

Commit

Permalink
Remove twine-check and ignore some flake8 errors (#895)
Browse files Browse the repository at this point in the history
* Remove twine-check and ignore some flake8 errors

* Add flake8 ignore tags to tox sections

* Bump twine version
  • Loading branch information
JoelLefkowitz authored Oct 15, 2024
1 parent 78031f0 commit ac659ec
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@
# html_theme = 'default'

html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
2 changes: 1 addition & 1 deletion requirements/publish.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
setuptools-scm==7.0.5
twine==4.0.1
twine>=5.0.0
wheel>=0.37.0
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ commands =
deps =
-r requirements/docs.txt
commands =
twine check .tox/dist/*
sphinx-build -WnEa -b html docs docs/_build/html

[pytest]
Expand All @@ -76,7 +75,7 @@ addopts = --ignore=node_modules
[flake8]
max-line-length = 120
exclude = **/migrations/*
ignore = F405,W504,I001,I005
ignore = E721,F405,I001,I005,W504

[isort]
skip = .eggs,.tox,docs,env,venv,node_modules,.git
Expand Down

0 comments on commit ac659ec

Please sign in to comment.