Skip to content

Commit e0d4b15

Browse files
chore: sync commits across branches (#409)
Syncing commits from main branch to develop branch.
2 parents ca9b48b + efd062f commit e0d4b15

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

.github/workflows/build-test-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: apache/skywalking-eyes@v0.6.0
5151

5252
pre-commit:
53-
runs-on: ubuntu-latest
53+
runs-on: ubuntu-22.04
5454
steps:
5555
- uses: actions/checkout@v4
5656
- uses: actions/setup-python@v5
@@ -66,7 +66,7 @@ jobs:
6666

6767
run-unit-tests:
6868
name: test-unit ${{ matrix.python-version }}
69-
runs-on: ubuntu-latest
69+
runs-on: ubuntu-22.04
7070
continue-on-error: true
7171
strategy:
7272
matrix:
@@ -89,7 +89,7 @@ jobs:
8989
poetry run pytest tests/unit
9090
9191
test-splunk:
92-
runs-on: ubuntu-latest
92+
runs-on: ubuntu-22.04
9393
continue-on-error: true
9494
needs:
9595
- meta
@@ -145,7 +145,7 @@ jobs:
145145
- semgrep
146146
- run-unit-tests
147147
- test-splunk
148-
runs-on: ubuntu-latest
148+
runs-on: ubuntu-22.04
149149
steps:
150150
- uses: actions/checkout@v4
151151
with:

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.7
16+
python-version: 3.12
1717
- run: curl -sSL https://install.python-poetry.org | python3 - --version 1.5.1
1818
- run: |
1919
poetry install

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,25 @@ description = "The Splunk Software Development Kit for Splunk Solutions"
2121
authors = ["Splunk <addonfactory@splunk.com>"]
2222
license = "Apache-2.0"
2323
repository = "https://github.com/splunk/addonfactory-solutions-library-python"
24+
keywords = ["splunk", "ucc"]
25+
classifiers = [
26+
"Programming Language :: Python",
27+
"Development Status :: 5 - Production/Stable",
28+
"Intended Audience :: Developers",
29+
"Topic :: Software Development :: Libraries :: Python Modules",
30+
"Topic :: Software Development :: Code Generators",
31+
"License :: OSI Approved :: Apache Software License",
32+
"Programming Language :: Python :: 3.7",
33+
"Programming Language :: Python :: 3.8",
34+
"Programming Language :: Python :: 3.9",
35+
"Programming Language :: Python :: 3.10",
36+
"Programming Language :: Python :: 3.11",
37+
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
39+
]
2440

2541
[tool.poetry.dependencies]
26-
python = "^3.7"
42+
python = ">=3.7,<3.14"
2743
requests = "^2.31.0"
2844
urllib3 = "<2"
2945
sortedcontainers = ">=2"

0 commit comments

Comments
 (0)