Skip to content
This repository was archived by the owner on Jul 7, 2021. It is now read-only.

Commit 79678ac

Browse files
committed
Update readme
1 parent 070a9c0 commit 79678ac

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

.github/workflows/pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, macos-latest]
12-
python-version: [3.5, 3.6, 3.7, 3.8]
11+
os: [ubuntu-latest, macos-latest, windows-latest]
12+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1313

1414
steps:
1515
- uses: actions/checkout@v2

README.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,30 @@ An SDK for integrating Skynet into Python applications.
1010

1111
## Instructions
1212

13-
We recommend running your Python application using [pipenv](https://pipenv-searchable.readthedocs.io/basics.html). You can use `siaskynet` by installing it with `pip`, adding it to your project's `Pipfile`, or by cloning this repository.
13+
We recommend running your Python application using [pipenv](https://pipenv-searchable.readthedocs.io/basics.html).
14+
15+
You can use `siaskynet` by installing it with `pip`, adding it to your project's `Pipfile`, or by cloning this repository.
1416

1517
## Documentation
1618

1719
For documentation complete with examples, please see [the Skynet SDK docs](https://siasky.net/docs/?python#introduction).
1820

1921
## Contributing
2022

21-
To run lints and tests on `python-skynet`, first run `make install` to install dependencies and then `make lint` or `make test`.
23+
To run lints and tests on `python-skynet`, first install dependencies:
24+
25+
```
26+
make install
27+
```
28+
29+
Now you can run
30+
31+
```
32+
make lint
33+
```
34+
35+
or
36+
37+
```
38+
make test
39+
```

0 commit comments

Comments
 (0)