Skip to content

Commit

Permalink
Merge pull request #2842 from obfuscurity/obfu/add_pipfile_lock
Browse files Browse the repository at this point in the history
Add Pipfile.lock
  • Loading branch information
obfuscurity authored Jul 30, 2024
2 parents 4e8e40c + 7abe2f5 commit 600ccb3
Show file tree
Hide file tree
Showing 4 changed files with 353 additions and 1 deletion.
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

0 comments on commit 600ccb3

Please sign in to comment.