Merge pull request #5 from andreped/hf-fix
Browse files- .github/workflows/deploy.yml +1 -1
- .github/workflows/tests.yml +2 -2
- README.md +2 -1
- requirements.txt +1 -1
.github/workflows/deploy.yml
CHANGED
@@ -17,4 +17,4 @@ jobs:
|
|
17 |
- name: Push to hub
|
18 |
env:
|
19 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
-
run: git push https://andreped:[email protected]/spaces/andreped/
|
|
|
17 |
- name: Push to hub
|
18 |
env:
|
19 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
+
run: git push https://andreped:[email protected]/spaces/andreped/postly main
|
.github/workflows/tests.yml
CHANGED
@@ -12,10 +12,10 @@ jobs:
|
|
12 |
- name: Checkout code
|
13 |
uses: actions/checkout@v2
|
14 |
|
15 |
-
- name: Set up Python 3.
|
16 |
uses: actions/setup-python@v4
|
17 |
with:
|
18 |
-
python-version: "3.
|
19 |
|
20 |
- name: Install dependencies
|
21 |
run: pip install -r requirements.txt
|
|
|
12 |
- name: Checkout code
|
13 |
uses: actions/checkout@v2
|
14 |
|
15 |
+
- name: Set up Python 3.10
|
16 |
uses: actions/setup-python@v4
|
17 |
with:
|
18 |
+
python-version: "3.10"
|
19 |
|
20 |
- name: Install dependencies
|
21 |
run: pip install -r requirements.txt
|
README.md
CHANGED
@@ -4,6 +4,7 @@ colorFrom: indigo
|
|
4 |
colorTo: indigo
|
5 |
sdk: streamlit
|
6 |
sdk_version: 1.13.0
|
|
|
7 |
app_port: 7860
|
8 |
emoji: 🫁
|
9 |
pinned: false
|
@@ -17,7 +18,7 @@ This repository contain the Postly client, which serves as a micro-message commu
|
|
17 |
|
18 |
## Getting started
|
19 |
|
20 |
-
Implemented client requires only Python 3.
|
21 |
|
22 |
To use client, simply do something like this:
|
23 |
```
|
|
|
4 |
colorTo: indigo
|
5 |
sdk: streamlit
|
6 |
sdk_version: 1.13.0
|
7 |
+
python_version: 3.10
|
8 |
app_port: 7860
|
9 |
emoji: 🫁
|
10 |
pinned: false
|
|
|
18 |
|
19 |
## Getting started
|
20 |
|
21 |
+
Implemented client requires only Python >=3.7, no additional requirements.
|
22 |
|
23 |
To use client, simply do something like this:
|
24 |
```
|
requirements.txt
CHANGED
@@ -3,4 +3,4 @@ isort
|
|
3 |
black
|
4 |
pydantic
|
5 |
pytest
|
6 |
-
|
|
|
3 |
black
|
4 |
pydantic
|
5 |
pytest
|
6 |
+
altair<5
|