Set python 3.10 for CIs and HF deployment
Browse files- .github/workflows/tests.yml +2 -2
- README.md +2 -1
.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 |
```
|