Skip to content

Commit

Permalink
Tidying up.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Oct 23, 2020
1 parent 73acfc7 commit 152a039
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 66 deletions.
8 changes: 4 additions & 4 deletions .dependabot/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This file is managed by 'repo_helper'. Don't edit it directly.
---
version: 1
update_configs:
- default_reviewers:
- domdfcoding
- package_manager: python
directory: /
package_manager: python
update_schedule: weekly
version: 1
default_reviewers:
- domdfcoding
57 changes: 0 additions & 57 deletions classifiers
Original file line number Diff line number Diff line change
@@ -1,27 +1,9 @@
Development Status :: 1 - Planning
Development Status :: 2 - Pre-Alpha
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
Development Status :: 6 - Mature
Development Status :: 7 - Inactive

Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Intended Audience :: System Administrators

Programming Language :: C
Programming Language :: C++
Programming Language :: Cython
Programming Language :: JavaScript
Programming Language :: R
Programming Language :: Ruby
Programming Language :: Rust
Programming Language :: SQL
Programming Language :: Unix Shell

Environment :: Console
Environment :: No Input/Output (Daemon)
Environment :: Plugins
Expand All @@ -32,44 +14,6 @@ Environment :: X11 Applications :: Gnome
Topic :: Software Development :: User Interfaces
Topic :: Software Development :: Widget Sets

Framework :: Dash
Framework :: Jupyter
Framework :: Matplotlib


if utility:
Topic :: Utilities

if flake8 plugin:
Framework :: Flake8
Intended Audience :: Developers

if Flask
Framework :: Flask
Topic :: Internet :: WWW/HTTP :: WSGI :: Application


if Pytest plugin:
Framework :: Pytest
Framework :: tox
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Software Development :: Testing :: Unit
Intended Audience :: Developers


if Sphinx extension:
Framework :: Sphinx :: Extension
Framework :: Sphinx :: Theme
Topic :: Documentation
Topic :: Documentation :: Sphinx
Topic :: Software Development :: Documentation
Intended Audience :: Developers

if Library:
Topic :: Software Development :: Libraries :: Python Modules
Intended Audience :: Developers


Topic :: Artistic Software
Topic :: Communications
Expand All @@ -93,7 +37,6 @@ Topic :: Games/Entertainment :: Role-Playing
Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games
Topic :: Games/Entertainment :: Simulation
Topic :: Games/Entertainment :: Turn Based Strategy
Topic :: Software Development :: Libraries :: pygame

Topic :: Internet
Topic :: Internet :: WWW/HTTP
Expand Down
2 changes: 1 addition & 1 deletion repo_helper/cli/commands/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from repo_helper.click_tools import CONTEXT_SETTINGS, abort, resolve_color_default
from repo_helper.core import RepoHelper

__all__ = ["show", "show_command", "version"]
__all__ = ["show", "show_command", "version", "log", "changelog"]


@cli_group(invoke_without_command=False)
Expand Down
8 changes: 5 additions & 3 deletions repo_helper/click_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
import sys
from functools import partial
from types import ModuleType
from typing import IO, Any, Callable, List, Mapping, Optional, overload, Tuple, Union
from typing import IO, Any, Callable, List, Mapping, Optional, Tuple, Union, overload

# 3rd party
import click
Expand Down Expand Up @@ -430,7 +430,8 @@ def choice(
show_default: bool = ...,
err: bool = ...,
start_index: int = ...
) -> int: ...
) -> int:
... # pragma: no cover


@overload
Expand All @@ -442,7 +443,8 @@ def choice(
show_default: bool = ...,
err: bool = ...,
start_index: int = ...
) -> str: ...
) -> str:
... # pragma: no cover


def choice(
Expand Down
2 changes: 1 addition & 1 deletion repo_helper/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ class enable_conda(ConfigVar): # noqa
"""

dtype = bool
default: bool = True
default: bool = True # TODO: make this default False
category: str = "conda & anaconda"


Expand Down

0 comments on commit 152a039

Please sign in to comment.