Skip to content

Commit 438357b

Browse files
RavenDB-17135: update minimum python version required to correspond with minimum ansible-core version
1 parent ef04153 commit 438357b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/tests_role_ravendb_node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10"]
17+
python-version: ["3.9", "3.10"]
1818
ansible-core:
1919
- stable-2.15
2020
- stable-2.16
@@ -151,7 +151,7 @@ jobs:
151151
- name: Build ansible galaxy collection
152152
run: |
153153
ansible-galaxy collection build .
154-
ansible-galaxy collection install ./ravendb-community-*.tar.gz --force -p ./
154+
ansible-galaxy collection install ./community-ravendb-*.tar.gz --force -p ./
155155
156156
- name: Set up .NET environment variables
157157
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Tested with the current ansible-core 2.15, ansible-core 2.16, ansible-core 2.17,
3333
- [ravendb-python-client](https://pypi.org/project/ravendb/) - latest version supported only. Please upgrade your ravendb-python-client driver version if you encounter difficulties.
3434
- [requests](https://pypi.org/project/requests/);
3535

36-
All modules and plugins require Python 3.8 or later.
36+
All modules and plugins require Python 3.9 or later.
3737

3838
## Using this collection
3939

plugins/modules/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
- absent
6464
default: present
6565
requirements:
66-
- python >= 3.8
66+
- python >= 3.9
6767
- ravendb python client
6868
- ASP.NET Core Runtime
6969
- Role community.ravendb.ravendb_python_client_prerequisites must be installed before using this module.

plugins/modules/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
type: bool
8181
default: false
8282
requirements:
83-
- python >= 3.8
83+
- python >= 3.9
8484
- ravendb python client
8585
- ASP.NET Core Runtime
8686
- Role community.ravendb.ravendb_python_client_prerequisites must be installed before using this module.

plugins/modules/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
required: true
2828
type: dict
2929
requirements:
30-
- python >= 3.8
30+
- python >= 3.9
3131
- requests
3232
- Role community.ravendb.ravendb_python_client_prerequisites must be installed before using this module.
3333
seealso:

0 commit comments

Comments
 (0)