Skip to content

Commit

Permalink
Merge branch 'release/4.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Feb 25, 2024
2 parents 19b100e + 0a3c1bd commit b167e47
Show file tree
Hide file tree
Showing 31 changed files with 1,365 additions and 266 deletions.
14 changes: 7 additions & 7 deletions docs/_theme/flask_theme_support.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# flasky extensions. flasky pygments style based on tango style
from pygments.style import Style
from pygments.token import (
Keyword,
Name,
Comment,
String,
Error,
Generic,
Keyword,
Literal,
Name,
Number,
Operator,
Generic,
Whitespace,
Punctuation,
Other,
Literal,
Punctuation,
String,
Whitespace,
)


Expand Down
7 changes: 3 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
#
# Progress Bar documentation build configuration file, created by
# sphinx-quickstart on Tue Aug 20 11:47:33 2013.
Expand All @@ -11,16 +10,16 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import datetime
import os
import sys
import datetime

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('..'))

from progressbar import __about__ as metadata # noqa: E402
from progressbar import __about__ as metadata

# -- General configuration -----------------------------------------------

Expand Down Expand Up @@ -59,7 +58,7 @@
master_doc = 'index'

# General information about the project.
project = u'Progress Bar'
project = 'Progress Bar'
project_slug = ''.join(project.capitalize().split())
copyright = f'{datetime.date.today().year}, <a href="http://wol.ph/">{metadata.__author__}</a>'

Expand Down
7 changes: 7 additions & 0 deletions docs/progressbar.algorithms.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
progressbar.algorithms module
=============================

.. automodule:: progressbar.algorithms
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/progressbar.env.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
progressbar.env module
======================

.. automodule:: progressbar.env
:members:
:undoc-members:
:show-inheritance:
7 changes: 0 additions & 7 deletions docs/progressbar.terminal.os_specific.posix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions docs/progressbar.terminal.os_specific.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ Submodules
.. toctree::
:maxdepth: 4

progressbar.terminal.os_specific.posix
progressbar.terminal.os_specific.windows

Module contents
---------------

Expand Down
7 changes: 0 additions & 7 deletions docs/progressbar.terminal.os_specific.windows.rst

This file was deleted.

Loading

0 comments on commit b167e47

Please sign in to comment.