-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: sync commits across branches (#409)
Syncing commits from main branch to develop branch.
- Loading branch information
Showing
4 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
- uses: apache/[email protected] | ||
|
||
pre-commit: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
|
@@ -66,7 +66,7 @@ jobs: | |
|
||
run-unit-tests: | ||
name: test-unit ${{ matrix.python-version }} | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
continue-on-error: true | ||
strategy: | ||
matrix: | ||
|
@@ -89,7 +89,7 @@ jobs: | |
poetry run pytest tests/unit | ||
test-splunk: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
continue-on-error: true | ||
needs: | ||
- meta | ||
|
@@ -145,7 +145,7 @@ jobs: | |
- semgrep | ||
- run-unit-tests | ||
- test-splunk | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,25 @@ description = "The Splunk Software Development Kit for Splunk Solutions" | |
authors = ["Splunk <[email protected]>"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/splunk/addonfactory-solutions-library-python" | ||
keywords = ["splunk", "ucc"] | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Software Development :: Code Generators", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = ">=3.7,<3.14" | ||
requests = "^2.31.0" | ||
urllib3 = "<2" | ||
sortedcontainers = ">=2" | ||
|