Skip to content

Commit 6cd3664

Browse files
committed
correct deploy CI step
1 parent a3fa164 commit 6cd3664

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ jobs:
9494
python-version: '3.8'
9595

9696
- name: install
97-
run: |
98-
pip install -U pip setuptools wheel twine
99-
pip install .
97+
run: make install
10098

10199
- name: set version
102100
run: VERSION_PATH='devtools/version.py' python <(curl -Ls https://git.io/JT3rm)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ black = black -S -l 120 --target-version py37 devtools
44

55
.PHONY: install
66
install:
7-
python -m pip install -U setuptools pip
7+
python -m pip install -U setuptools pip wheel twine
88
pip install -U -r requirements.txt
99
pip install -e .
1010

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pip install devtools[pygments]
2020

2121
`pygments` is not required but if it's installed, output will be highlighted and easier to read.
2222

23-
`devtools` has no other required dependencies except python 3.6, 3.7, or 3.8.
23+
`devtools` has no other required dependencies except python 3.6, 3.7, 3.8 or 3.9.
2424
If you've got python 3.6+ and `pip` installed, you're good to go.
2525

2626
## Usage

devtools/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__all__ = ('VERSION',)
22

3-
VERSION = 'dev'
3+
VERSION = '0.7.0'

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ pip install devtools[pygments]
66

77
`pygments` is not required but if it's installed, output will be highlighted and easier to read.
88

9-
`devtools` has no other required dependencies except python 3.6, 3.7, or 3.8.
9+
`devtools` has no other required dependencies except python 3.6, 3.7, 3.8, or 3.9.
1010
If you've got python 3.6+ and `pip` installed, you're good to go.

0 commit comments

Comments
 (0)