Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Install pnpm and dependencies
uses: apify/actions/pnpm-install@v1.3.1

- name: Setup Python 3.12 (Windows)
- name: Set up Python (Windows)
if: ${{ matrix.os == 'windows-2025' }}
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2025]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions src/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,10 @@ export class CreateCommand extends ApifyCommand<typeof CreateCommand> {
case ProjectLanguage.Scrapy: {
if (!isPythonVersionSupported(runtime.version)) {
warning({
message: `Python Actors require Python 3.9 or higher, but you have Python ${runtime.version}!`,
message: `Python Actors require Python ${MINIMUM_SUPPORTED_PYTHON_VERSION} or higher, but you have Python ${runtime.version}!`,
});
warning({
message: 'Please install Python 3.9 or higher to be able to run Python Actors locally.',
message: `Please install Python ${MINIMUM_SUPPORTED_PYTHON_VERSION} or higher to be able to run Python Actors locally.`,
});
return;
}
Expand Down
4 changes: 2 additions & 2 deletions src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,10 +414,10 @@ export class RunCommand extends ApifyCommand<typeof RunCommand> {
case ProjectLanguage.Scrapy: {
if (!isPythonVersionSupported(runtime.version)) {
error({
message: `Python Actors require Python 3.9 or higher, but you have Python ${runtime.version}!`,
message: `Python Actors require Python ${MINIMUM_SUPPORTED_PYTHON_VERSION} or higher, but you have Python ${runtime.version}!`,
});
error({
message: 'Please install Python 3.9 or higher to be able to run Python Actors locally.',
message: `Please install Python ${MINIMUM_SUPPORTED_PYTHON_VERSION} or higher to be able to run Python Actors locally.`,
});

return;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const APIFY_CLIENT_DEFAULT_HEADERS: Record<string, string> = {
...(githubActionsRunUrl && { 'X-Apify-Github-Actions-Run-Url': githubActionsRunUrl }),
};

export const MINIMUM_SUPPORTED_PYTHON_VERSION = '3.9.0';
export const MINIMUM_SUPPORTED_PYTHON_VERSION = '3.11.0';

export const PYTHON_VENV_PATH = '.venv';

Expand Down