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 7fc3ea3 commit ca9bbeeCopy full SHA for ca9bbee
.github/workflows/tests.yml
@@ -9,10 +9,10 @@ jobs:
9
test:
10
runs-on: ubuntu-latest
11
container:
12
- image: python:3.8-alpine
+ image: python:3.12-alpine
13
credentials:
14
- username: ${{ secrets.DOCKERHUB_USERNAME }}
15
- password: ${{ secrets.DOCKERHUB_TOKEN }}
+ username: ${{ secrets.DOCKERHUB_USERNAME || '' }}
+ password: ${{ secrets.DOCKERHUB_TOKEN || '' }}
16
steps:
17
- uses: actions/checkout@v3
18
- name: setup
Makefile
@@ -4,7 +4,7 @@
4
defaut: help
5
6
install: wandbox/*.py ## install self
7
- python setup.py install
+ python -m pip install .
8
install-test-deps: ## install test dependencies
pip install -e.[test]
0 commit comments