python-diamond / Diamond

Diamond is a python daemon that collects system metrics and publishes them to Graphite (and others). It is capable of collecting cpu, memory, network, i/o, load and disk metrics. Additionally, it features an API for implementing custom collectors for gathering metrics from almost any source.
http://diamond.readthedocs.org/
MIT License
1.74k stars 601 forks source link

Require Python '==2.7' #708

Closed madest92 closed 2 years ago

madest92 commented 6 years ago

I'm having a problem installing the package:

pip2 install -U -e git+https://github.com/python-diamond/Diamond.git#egg=diamond
Obtaining diamond from git+https://github.com/python-diamond/Diamond.git#egg=diamond
  Updating /src/diamond clone
diamond requires Python '==2.7' but the running Python is 2.7.13
NotSqrt commented 6 years ago

It seems the line python_requires='==2.7', in setup.py, would be better as ~= 2.7 maybe ?

nameprabhat commented 4 years ago

Yes it works after changing it to ~= 2.7 in setup.py

shortdudey123 commented 2 years ago

Closed by #718