tldr
tldr

Reputation: 12112

Python: does Gevent 1.0 support Python 3.3?

I'm currently using it with 2.7, but thinking of moving to 3.3. The documentation didn't specify if it was compatible with 3.3.

Upvotes: 4

Views: 780

Answers (1)

falsetru
falsetru

Reputation: 369274

According to pypi gevent package page, it does not support Python 3.x.

...
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
...

Upvotes: 2

Related Questions