beeware / cricket

A GUI tool for running Python test suites.
BSD 3-Clause "New" or "Revised" License
213 stars 68 forks source link

Issue when installing on python3.5 #74

Closed devxpy closed 5 years ago

devxpy commented 5 years ago
(zproc-eGzboTzC) ~/P/zproc ) python --version
Python 3.5.0
(zproc-eGzboTzC) ~/P/zproc ) pip install cricket==0.3.0.dev1
Collecting cricket==0.3.0.dev1
  Downloading https://files.pythonhosted.org/packages/37/75/8d91c1c08e107c2862a75e32ff6f381d208a6c76d2027528c792a50151ca/cricket-0.3.0.dev1-py2.py3-none-any.whl (597kB)
    100% |████████████████████████████████| 604kB 471kB/s 
Requirement already satisfied: setuptools>=39.1.0 in /home/dev/.local/share/virtualenvs/zproc-eGzboTzC/lib/python3.5/site-packages (from cricket==0.3.0.dev1) (40.0.0)
Collecting toga==0.3.0.dev9 (from cricket==0.3.0.dev1)
  Downloading https://files.pythonhosted.org/packages/d9/7e/8dbbc6c9231ee456a37b6ae814755c7a58101fd5e90056822ea9306f50dd/toga-0.3.0.dev9-py3-none-any.whl
Collecting toga-gtk==0.3.0.dev9; sys_platform == "linux" (from toga==0.3.0.dev9->cricket==0.3.0.dev1)
  Downloading https://files.pythonhosted.org/packages/de/2f/b1db7bf869c3c69af1658e4fd676cf19fd8fd1fef12ccdfaaffaff0d1890/toga_gtk-0.3.0.dev9-py3-none-any.whl
Collecting pygobject>=3.14.0 (from toga-gtk==0.3.0.dev9; sys_platform == "linux"->toga==0.3.0.dev9->cricket==0.3.0.dev1)
  Downloading https://files.pythonhosted.org/packages/00/17/198a9d0eb0e89b5c7d2a9b4437eb40d62702ab771030cd79fc7141cb0d30/PyGObject-3.30.1.tar.gz (711kB)
    100% |████████████████████████████████| 716kB 391kB/s 
Collecting gbulb>=0.5.3 (from toga-gtk==0.3.0.dev9; sys_platform == "linux"->toga==0.3.0.dev9->cricket==0.3.0.dev1)
  Downloading https://files.pythonhosted.org/packages/92/cb/d2a0e4899cde5aa797e31d77a0a7422dcd188d880bb38d0e9d1b1196e5c6/gbulb-0.6.1.tar.gz
gbulb requires Python '>3.5' but the running Python is 3.5.0
freakboy3742 commented 5 years ago

Python version 3.5.0 is not "> 3.5" - it's ">= 3.5". This looks like a bug with gbulb's setup.py file - it reports compatibility with 3.5, but it's python_requires string then excludes 3.5.

freakboy3742 commented 5 years ago

Logged upstream as nathan-hoad/gbulb#40