Spaces:
Running
Running
daavoo
commited on
Commit
ยท
945b6d4
1
Parent(s):
7758a19
Bump to python 3.11
Browse files- .github/workflows/docs.yaml +1 -1
- .github/workflows/lint.yaml +1 -1
- .github/workflows/release.yaml +1 -1
- .github/workflows/tests.yaml +1 -1
- pyproject.toml +2 -3
.github/workflows/docs.yaml
CHANGED
@@ -28,7 +28,7 @@ jobs:
|
|
28 |
- name: Set up Python
|
29 |
uses: actions/setup-python@v5
|
30 |
with:
|
31 |
-
python-version: '3.
|
32 |
cache: "pip"
|
33 |
|
34 |
- name: Configure git
|
|
|
28 |
- name: Set up Python
|
29 |
uses: actions/setup-python@v5
|
30 |
with:
|
31 |
+
python-version: '3.11'
|
32 |
cache: "pip"
|
33 |
|
34 |
- name: Configure git
|
.github/workflows/lint.yaml
CHANGED
@@ -18,7 +18,7 @@ jobs:
|
|
18 |
- name: Set up Python
|
19 |
uses: actions/setup-python@v5
|
20 |
with:
|
21 |
-
python-version: '3.
|
22 |
|
23 |
- name: Install pre-commit
|
24 |
run: pip install pre-commit
|
|
|
18 |
- name: Set up Python
|
19 |
uses: actions/setup-python@v5
|
20 |
with:
|
21 |
+
python-version: '3.11'
|
22 |
|
23 |
- name: Install pre-commit
|
24 |
run: pip install pre-commit
|
.github/workflows/release.yaml
CHANGED
@@ -21,7 +21,7 @@ jobs:
|
|
21 |
- name: Set up Python
|
22 |
uses: actions/setup-python@v5
|
23 |
with:
|
24 |
-
python-version: '3.
|
25 |
|
26 |
- name: Upgrade pip
|
27 |
run: |
|
|
|
21 |
- name: Set up Python
|
22 |
uses: actions/setup-python@v5
|
23 |
with:
|
24 |
+
python-version: '3.11'
|
25 |
|
26 |
- name: Upgrade pip
|
27 |
run: |
|
.github/workflows/tests.yaml
CHANGED
@@ -24,7 +24,7 @@ jobs:
|
|
24 |
- name: Set up Python
|
25 |
uses: actions/setup-python@v5
|
26 |
with:
|
27 |
-
python-version: '3.
|
28 |
cache: "pip"
|
29 |
|
30 |
- name: Install
|
|
|
24 |
- name: Set up Python
|
25 |
uses: actions/setup-python@v5
|
26 |
with:
|
27 |
+
python-version: '3.11'
|
28 |
cache: "pip"
|
29 |
|
30 |
- name: Install
|
pyproject.toml
CHANGED
@@ -6,13 +6,12 @@ build-backend = "setuptools.build_meta"
|
|
6 |
name = "surf-spot-finder"
|
7 |
readme = "README.md"
|
8 |
license = {text = "Apache-2.0"}
|
9 |
-
requires-python = ">=3.
|
10 |
dynamic = ["version"]
|
11 |
dependencies = [
|
|
|
12 |
"fire",
|
13 |
"loguru",
|
14 |
-
"opentelemetry-exporter-otlp",
|
15 |
-
"opentelemetry-sdk",
|
16 |
"pydantic",
|
17 |
]
|
18 |
|
|
|
6 |
name = "surf-spot-finder"
|
7 |
readme = "README.md"
|
8 |
license = {text = "Apache-2.0"}
|
9 |
+
requires-python = ">=3.11"
|
10 |
dynamic = ["version"]
|
11 |
dependencies = [
|
12 |
+
"any-agent @ git+ssh://[email protected]/mozilla-ai/any-agent",
|
13 |
"fire",
|
14 |
"loguru",
|
|
|
|
|
15 |
"pydantic",
|
16 |
]
|
17 |
|