Skip to content

Commit

Permalink
Merge pull request #1388 from enthought/release/7.1.0
Browse files Browse the repository at this point in the history
Release TraitsUI 7.1.0
  • Loading branch information
kitchoi authored Oct 20, 2020
2 parents 1d8dd1a + de645fc commit 79e2da4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ docs/build/
traitsui/_version.py

# Ignore automatically generated API documentation source
docs/source/api/autogenerated/
# ... except index.rst which is manually maintained.
docs/source/api/*.rst
!docs/source/api/index.rst
2 changes: 1 addition & 1 deletion docs/source/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ TraitsUI. For user documentation, please read the
.. toctree::
:maxdepth: 3

autogenerated/traitsui
traitsui
7 changes: 3 additions & 4 deletions etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,9 @@ def docs(runtime, toolkit, environment):
click.echo(
"Regenerating API docs in '{environment}'".format(**parameters)
)
output_path = os.path.join("docs", "source", "api", "autogenerated")
if os.path.exists(output_path):
rmtree(output_path)
os.makedirs(output_path)
output_path = os.path.join("docs", "source", "api")
if not os.path.exists(output_path):
os.makedirs(output_path)
commands = [
"edm run -e {environment} -- sphinx-apidoc "
"-e "
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# into the package source.
MAJOR = 7
MINOR = 1
MICRO = 0
PRERELEASE = "rc2"
MICRO = 1
PRERELEASE = ""
IS_RELEASED = False

# If this file is part of a Git export (for example created with "git archive",
Expand Down

0 comments on commit 79e2da4

Please sign in to comment.