Skip to content
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

Add Pipfile.lock #2842

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[packages]
django = "<5,>=3.2"
python-memcached = "==1.58"
txamqp = "==0.8"
django-tagging = "==0.5.0"
gunicorn = "*"
pytz = "*"
pyparsing = ">=2.3.0"
cairocffi = "*"
whitenoise = "==4.1.4"
urllib3 = "*"
six = "*"

[dev-packages]

[requires]
python_version = "3.8"

[packages.whisper]
git = "https://github.com/graphite-project/whisper.git"
322 changes: 322 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Django>=3.2,<5
python-memcached==1.58
txAMQP==0.8
django-tagging==0.4.6
django-tagging==0.5.0
gunicorn
pytz
pyparsing>=2.3.0
Expand All @@ -49,3 +49,4 @@ git+https://github.com/graphite-project/whisper.git#egg=whisper
whitenoise==4.1.4
urllib3
six
importlib_metadata
4 changes: 4 additions & 0 deletions webapp/graphite/events/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
import six
django.utils.encoding.python_2_unicode_compatible = six.python_2_unicode_compatible
django.utils.six = six
try:
django.utils.encoding.smart_text = django.utils.encoding.smart_str
except ImportError:
pass
from tagging.models import Tag # noqa: E402

from graphite.events.compat import ModelTaggedItemManager # noqa: E402
Expand Down
Loading