-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Update deap version to 1.0.2 in requirements.txt #434
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update deap version to 1.0.2 in requirements.txt #434
Conversation
|
one idea, when i put 1.0.2 in requirements.txt to test this, this command:
Failed. Might be worth to put in requirements.txt:
Which is a version pip did manage to find for me (and tests passed with this). I'm not sure what the best fix here is, but it seems pip under anaconda doesn't have deap==1.0.2 in it. EDIT: BTW, I'm testing on: which is Centos if I understand correctly. |
|
Hmm, my anaconda environment somehow has 1.0.2. Maybe most users will follow the installation instruction online for installing TPOT, which should not have this issue. |
|
I'll check that instruction, but I did install that way when I initially
installed the environment. Perhaps python 2 doesn't have?
…On Sun, 30 Apr 2017, 18:50 Weixuan, ***@***.***> wrote:
Hmm, my anaconda environment somehow has 1.0.2. Maybe most users will
follow the installation instruction
<http://rhiever.github.io/tpot/installing/> online for installing TPOT,
which should not have this issue.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#434 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AMzW7C2Ysep7C8ue9Z_jYBLbzzZq-cdRks5r1K3FgaJpZM4NMjAi>
.
|
|
DEAP 1.0.2 is out on PyPi: https://pypi.python.org/pypi/deap So any version of pip should pick it up. |
|
Please note for me at least (centos, linix x64 OS), this command:
*pip install deap==1.0.2*
fails, the 1.0.2 version out on pypi is identified in PIP as 1.0.2.post2
Also, on the pypi page itself the green download button looks like this
(looks like a hint that this is the version that's out):
Download
deap-1.0.2.post2.tar.gz
So, I don't know if it's just on my machine, but the command
*pip install deap==1.0.2.post2*
Seems more generally working to me.
…On Sun, Apr 30, 2017 at 10:12 PM, Randy Olson ***@***.***> wrote:
DEAP 1.0.2 is out on PyPi: https://pypi.python.org/pypi/deap
So any version of pip should pick it up.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#434 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AMzW7MnT2U8WTman1ILoSgLcRJmIrJUNks5r1N0XgaJpZM4NMjAi>
.
--
Cheers,
Dani K.
|
|
Even the download link leads to:
https://pypi.python.org/packages/5b/d7/a49d3dd7aa8cbaf2b1ac8f4d6495824c886fea8b3dac4a73dc4df94cad76/deap-1.0.2.post2.tar.gz
Just letting you know. I just manualy changed to .post2 on my machine to
solve, if the problem is just for me I'll handle it :)
…On Mon, May 1, 2017 at 12:55 PM, Dan Koretsky ***@***.***> wrote:
Please note for me at least (centos, linix x64 OS), this command:
*pip install deap==1.0.2*
fails, the 1.0.2 version out on pypi is identified in PIP as 1.0.2.post2
Also, on the pypi page itself the green download button looks like this
(looks like a hint that this is the version that's out):
Download
deap-1.0.2.post2.tar.gz
So, I don't know if it's just on my machine, but the command
*pip install deap==1.0.2.post2*
Seems more generally working to me.
On Sun, Apr 30, 2017 at 10:12 PM, Randy Olson ***@***.***>
wrote:
> DEAP 1.0.2 is out on PyPi: https://pypi.python.org/pypi/deap
>
> So any version of pip should pick it up.
>
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <#434 (comment)>, or mute
> the thread
> <https://github.com/notifications/unsubscribe-auth/AMzW7MnT2U8WTman1ILoSgLcRJmIrJUNks5r1N0XgaJpZM4NMjAi>
> .
>
--
Cheers,
Dani K.
--
Cheers,
Dani K.
|
|
Hmm, you are right, it should be 1.0.2.post2, very strange. I will resubmit this PR to fix it soon |
A quick PR for related issue #433