-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: onboard Python 3.12 * ci: build before release
- Loading branch information
Showing
3 changed files
with
22 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 |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ] | ||
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
|
@@ -54,7 +54,7 @@ jobs: | |
- uses: actions/upload-artifact@v3 | ||
if: success() || failure() | ||
with: | ||
name: test-results-unit-python | ||
name: test-results-unit-python-${{ matrix.python-version }} | ||
path: test-results/* | ||
|
||
compliance-copyrights: | ||
|
@@ -92,11 +92,10 @@ jobs: | |
gpg_private_key: ${{ secrets.SA_GPG_PRIVATE_KEY }} | ||
passphrase: ${{ secrets.SA_GPG_PASSPHRASE }} | ||
extra_plugins: | | ||
@google/semantic-release-replace-plugin | ||
semantic-release-replace-plugin | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_ADMIN }} | ||
- if: ${{ steps.semantic.outputs.new_release_published == 'true' }} | ||
uses: splunk/[email protected] | ||
with: | ||
pypi_username: ${{ secrets.PYPI_USERNAME }} | ||
pypi_token: ${{ secrets.PYPI_TOKEN }} | ||
run: | | ||
poetry build | ||
poetry publish -n -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_TOKEN }} |
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
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 |
---|---|---|
|
@@ -19,6 +19,21 @@ name = "addonfactory_splunk_conf_parser_lib" | |
version = "0.3.4" | ||
description = "Splunk .conf files parser" | ||
authors = ["Splunk <[email protected]>"] | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"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", | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"License :: OSI Approved :: Apache Software License" | ||
] | ||
|
||
readme = "README.md" | ||
|
||
|