Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/installation/1-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ To check your installed Python version, open a terminal and run:
python --version
```

If you see a version number starting with "3.9" or higher (e.g., "3.9.5" or "3.9.0"), you're good to go. If not, you might need to upgrade Python on your system.
If you see a version number starting with "3.9" or higher (e.g., "3.9.7" or "3.12.3"), you're good to go. If not, you might need to upgrade Python on your system.

### Upgrading Python on Linux

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/installation/2-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To check your installed Python version, open a terminal and run:
python --version
```

If you see a version number starting with "3.9" or higher (e.g., "3.9.5" or "3.9.0"), you're good to go. If not, you might need to upgrade Python on your system.
If you see a version number starting with "3.9" or higher (e.g., "3.9.7" or "3.12.3"), you're good to go. If not, you might need to upgrade Python on your system.

### Upgrading Python on MacOS

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/installation/3-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ To check your installed Python version, open a Command Prompt and run:
python --version
```

If you see a version number starting with "3.9" or higher (e.g., "3.9.5" or "3.9.0"), you're good to go. If not, you might need to upgrade Python on your system.
If you see a version number starting with "3.9" or higher (e.g., "3.9.7" or "3.12.3"), you're good to go. If not, you might need to upgrade Python on your system.

### Upgrading Python on Windows

Expand Down
2 changes: 1 addition & 1 deletion generated/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ test-3.12:

test-3.13:
extends: .tests
image: python:3.13-alpine
image: python:3.13-alpine
2 changes: 1 addition & 1 deletion generated/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
author_email="support@groundlight.ai",
url="",
keywords=["OpenAPI", "OpenAPI-Generator", "Groundlight API"],
python_requires=">=3.6",
python_requires=">=3.9",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is the only change I didnt capture - although this file is generated so I'm not sure if its the right place to make the change.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, this file AFAIK isn't actually used by anything.

install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
Expand Down
Loading