We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4654343 commit 1d7a930Copy full SHA for 1d7a930
.github/workflows/release.yml
@@ -18,7 +18,10 @@ jobs:
18
python-version: "3.x"
19
20
- name: Build package
21
- run: pipx run build
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install build
24
+ python -m build
25
26
- name: Publish to Test PyPi
27
if: ${{ startsWith(github.ref, 'refs/tags') }}
.github/workflows/test.yml
@@ -101,11 +101,8 @@ jobs:
101
with:
102
python-version: ${{ matrix.python }}
103
104
- - name: Install dependencies
105
- run: pip install -r requirements.txt coveralls
106
-
107
- - name: Install project
108
- run: pip install .
+ - name: Install project & dependencies
+ run: pip install .[dev]
109
110
- name: Run tests
111
run: |
0 commit comments