Skip to content

Commit 2c386a9

Browse files
committed
Fiddle around with CI/CD #2
1 parent db6b3ee commit 2c386a9

File tree

6 files changed

+312
-290
lines changed

6 files changed

+312
-290
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
python-version: 3.9
1717
- name: Install dependencies
18-
run: pip install .[dev]
18+
run: pip install ".[dev]"
1919
- name: Build package
2020
run: python -m build
2121
- name: Publish package to PyPI

CHANGELOG.md

Lines changed: 304 additions & 281 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you're seeing some unexpected behavior with this project, please create an [i
1010

1111
1. Version of this project you're using (ex: 1.5.0)
1212
2. Platform version (ex: Windows Server 2012 R2)
13-
3. Framework version (ex: Python 3.7)
13+
3. Framework version (ex: Python 3.13.\*)
1414
4. Splunk Enterprise version (ex: 9.0)
1515
5. Other relevant information (ex: local/remote environment, Splunk network configuration, standalone or distributed deployment, are load balancers used)
1616

@@ -32,4 +32,3 @@ To create a pull request:
3232
If you have a paid Splunk Enterprise or Splunk Cloud license, you can contact [Support](https://www.splunk.com/en_us/support-and-services.html) with questions.
3333

3434
You can reach the Splunk Developer Platform team at _[email protected]_.
35-

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ The Splunk Enterprise SDK for Python contains library code, and its examples are
2424

2525
Here's what you need to get going with the Splunk Enterprise SDK for Python.
2626

27-
- Python 3.7, Python 3.9 and Python 3.13
27+
- Python 3.9 and Python 3.13
2828

29-
The Splunk Enterprise SDK for Python is compatible with python3 and has been tested with Python v3.7, v3.9 and v3.13.
29+
The Splunk Enterprise SDK for Python is compatible with python3 and has been tested with Python 3.9 and 3.13.
3030

31-
- Splunk Enterprise 9.2 or 8.2
31+
- Splunk Enterprise 10, 9.4 or 8.2
3232

33-
The Splunk Enterprise SDK for Python has been tested with Splunk Enterprise 9.2, 8.2 and 8.1
33+
The Splunk Enterprise SDK for Python has been tested with Splunk Enterprise 10, 9.4 and 8.2
3434

3535
If you haven't already installed Splunk Enterprise, download it [here](http://www.splunk.com/download).
3636
For more information, see the Splunk Enterprise [_Installation Manual_](https://docs.splunk.com/Documentation/Splunk/latest/Installation).

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "splunk-sdk"
77
version = "2.1.0"
88
description = "The Splunk Software Development Kit for Python"
99
readme = "README.md"
10-
requires-python = ">=3.7, <4"
10+
requires-python = ">=3.9, <4"
1111
license = "Apache-2.0"
1212
authors = [{ name = "Splunk, Inc.", email = "[email protected]" }]
1313
classifiers = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ commands = coverage erase
4141

4242
[testenv:docs]
4343
description = invoke sphinx-build to build the HTML docs
44-
basepython = python3.7
44+
basepython = python3.9
4545
deps = sphinx >= 1.7.5, < 2
4646
jinja2 < 3.1.0
4747
commands = make -C docs/ html

0 commit comments

Comments
 (0)