Skip to content

Commit 90695be

Browse files
authored
prep for 1.0.0 pre-release (#111)
* bump version * remove py2 references in CONTRIBUTING.md and remove unused completer file * remove completer from setup.py
1 parent c003f27 commit 90695be

File tree

4 files changed

+3
-23
lines changed

4 files changed

+3
-23
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Document all notable consumer-affecting changes in CHANGELOG.md per principles a
3535
## Tests
3636

3737
We use [tox](https://tox.readthedocs.io/en/latest/#) to run the
38-
[pytest](https://docs.pytest.org/) test framework on Python 2.7, 3.5, 3.6, and 3.7.
38+
[pytest](https://docs.pytest.org/) test framework on Python 3.5, 3.6, and 3.7.
3939

4040
To run all tests, run this at the root of the repo:
4141

@@ -49,11 +49,10 @@ To run the tests on all supported versions of Python in a local dev environment,
4949

5050
```bash
5151
$ pip install tox
52-
$ pyenv install 2.7.16
5352
$ pyenv install 3.5.7
5453
$ pyenv install 3.6.9
5554
$ pyenv install 3.7.4
56-
$ pyenv local 2.7.16 3.5.7 3.6.9 3.7.4
55+
$ pyenv local 3.5.7 3.6.9 3.7.4
5756
$ tox
5857
```
5958

bin/code42cli_completer

Lines changed: 0 additions & 18 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,5 @@
5656
"Programming Language :: Python :: 3.8",
5757
"Programming Language :: Python :: Implementation :: CPython",
5858
],
59-
scripts=["bin/code42cli_completer"],
6059
entry_points={"console_scripts": ["code42=code42cli.main:cli"]},
6160
)

src/code42cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.3"
1+
__version__ = "1.0.0b1"

0 commit comments

Comments
 (0)