Skip to content

Commit fd2209a

Browse files
author
Marc-Antoine Hinse
committed
Force Python 3.9 since that's what we need for our scripts to run
Updated the Splunk upload to 9.4
1 parent 4222186 commit fd2209a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ package: packages/flare/bin/vendor
5151

5252
.PHONY: publish
5353
publish: output/flare.tar.gz
54-
curl -u "$(SPLUNKBASE_CREDS)" --request POST https://splunkbase.splunk.com/api/v1/app/7602/new_release/ -F "files[]=@./output/flare.tar.gz" -F "filename=flare.tar.gz" -F "splunk_versions=9.3" -F "visibility=true"
54+
curl -u "$(SPLUNKBASE_CREDS)" --request POST https://splunkbase.splunk.com/api/v1/app/7602/new_release/ -F "files[]=@./output/flare.tar.gz" -F "filename=flare.tar.gz" -F "splunk_versions=9.4" -F "visibility=true"
5555

5656
.PHONY: validate
5757
validate: venv-tools

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
## Requirements
55

6-
At the time of this writing, Splunk Enterprise is at version 9.3.0. This version of splunk requires Python v3.9.
6+
At the time of this writing, Splunk Enterprise is at version 9.4.0. This version of splunk requires Python v3.9.
77

88
## Installation
99

packages/flare/src/main/resources/splunk/default/inputs.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[script://$SPLUNK_HOME/etc/apps/flare/bin/cron_job_ingest_events.py]
22
interval = 0 0 1 1 *
3-
python.version = python3
3+
python.version = python3.9
44
index = flare
55
source = flare
66
sourcetype = flare_json
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[script:flare_external_requests_api_key_validation]
22
match=/fetch_api_key_validation
33
handler=flare_external_requests.FlareValidateApiKey
4-
python.version = python3
4+
python.version = python3.9
55

66
[script:flare_external_requests_user_tenants]
77
match=/fetch_user_tenants
88
handler=flare_external_requests.FlareUserTenants
9-
python.version = python3
9+
python.version = python3.9
1010

1111
[script:flare_external_requests_severity_filters]
1212
match=/fetch_severity_filters
1313
handler=flare_external_requests.FlareSeverityFilters
14-
python.version = python3
14+
python.version = python3.9
1515

1616
[script:flare_external_requests_source_type_filters]
1717
match=/fetch_source_type_filters
1818
handler=flare_external_requests.FlareSourceTypeFilters
19-
python.version = python3
19+
python.version = python3.9

requirements.tools.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest==8.3.2
22
mypy==1.12.1
33
ruff==0.7.0
4-
splunk-appinspect==3.8.0
4+
splunk-appinspect==3.9.1
55
isort==5.13.2
6-
freezegun==1.5.1
6+
freezegun==1.5.1

0 commit comments

Comments
 (0)