Skip to content

Commit

Permalink
docs: use beta-like language in the development section of readme (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey authored Jan 5, 2022
1 parent ec75ee7 commit a7d0fbc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 24 deletions.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### What I did

<!-- The `fixes:` field denotes an issue that will be marked resolved by merging this PR -->
fixes: #

### How I did it
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: isort

- repo: https://github.com/psf/black
rev: 21.7b0
rev: 21.10b0
hooks:
- id: black
name: black
Expand All @@ -26,7 +26,7 @@ repos:
- id: flake8

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
rev: v0.910-1
hooks:
- id: mypy

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ ape ledger delete <alias>

## Development

This project is in early development and should be considered an alpha.
Things might not work, breaking changes are likely.
This project is in development and should be considered a beta.
Things might not be in their final state and breaking changes may occur.
Comments, questions, criticisms and pull requests are welcomed.

## License
Expand Down
17 changes: 1 addition & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,8 @@ write_to = "ape_ledger/version.py"

[tool.black]
line-length = 100
target-version = ['py37', 'py38']
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| env
| venv
)/
'''

[tool.pytest.ini_options]
addopts = """
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"hypothesis>=6.2.0,<7.0", # Strategy-based fuzzer
],
"lint": [
"black>=20.8b1,<21.0", # auto-formatter and linter
"mypy>=0.800,<1.0", # Static type analyzer
"black>=21.10b0,<22.0", # auto-formatter and linter
"mypy>=0.910,<1.0", # Static type analyzer
"flake8>=3.8.3,<4.0", # Style linter
"isort>=5.7.0,<6.0", # Import sorting linter
"isort>=5.9.3,<6.0", # Import sorting linter
],
"release": [ # `release` GitHub Action job uses this
"setuptools", # Installation tool
Expand Down Expand Up @@ -86,7 +86,6 @@
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit a7d0fbc

Please sign in to comment.