Dinnerbone / mcstatus

A Python class for checking the status of an enabled Minecraft server

Home Page:http://dinnerbone.com/minecraft/tools/status/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

will not install for python 3.10+

badgeminer opened this issue · comments

will not install for python 3.10+

How so? Send any errors or messages that occur when it fails installing, so we can fix or troubleshoot the issue.

Actually I'm gonna change this to Bug, because it's intentional that python 3.10 is not supported.

python = ">=3.6.2,<3.10"

because of a development dependency pytype
python-versions = "<3.10,>=3.6"

I'll cut a release later that fixes this by only installing pytype if python is less than 3.10

There could be other dependencies that are gated on python 3.10 too, but pytype was the only one that I found quickly.

I'm fighting a test that's failing before I can release the change I'm making that fixes this.

Fixed in v8.0.0 with (27fbe2e)