Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit e448464

Browse files
author
Andrés Correa Casablanca
committed
Fix requirements message
1 parent 3ed4738 commit e448464

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Console/Application.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct()
4646
$shutdownRegistered = true;
4747
}
4848

49-
parent::__construct('Jupyter-PHP Installer', '0.1');
49+
parent::__construct('Jupyter-PHP Installer', '0.2');
5050
}
5151

5252
/**
@@ -83,10 +83,10 @@ public function doRun(InputInterface $input, OutputInterface $output)
8383
ErrorHandler::register($this->io);
8484
$io = $this->io;
8585

86-
if (PHP_VERSION_ID < 50509) {
86+
if (PHP_VERSION_ID < 70000) {
8787
$io->writeError(
8888
'<warning>'.
89-
'This installer only officially supports PHP 5.5.9 and above, you will most likely encounter problems with your PHP '.
89+
'This installer only officially supports PHP 7.0 and above, you will most likely encounter problems with your PHP '.
9090
PHP_VERSION.', upgrading is strongly recommended'.
9191
'</warning>'
9292
);

0 commit comments

Comments
 (0)