Code Monkey home page Code Monkey logo

Comments (7)

ferhatelmas avatar ferhatelmas commented on June 19, 2024 2

Definitely, we will do it ASAP.

from stream-django.

tkrevh avatar tkrevh commented on June 19, 2024 1

I've also created a PR #109 for it

from stream-django.

tkrevh avatar tkrevh commented on June 19, 2024

@ferhatelmas any update on this? This is really high priority for us and it only requires a minimal change in

django = "django>=2.0,<3.2" # checked https://docs.djangoproject.com/en/dev/releases/3.1/#backwards-incompatible-3-1

to: django = "django>=2.0,<=3.2"

from stream-django.

ferhatelmas avatar ferhatelmas commented on June 19, 2024

On it, you should be able to use by tomorrow. Sorry for the latency.

from stream-django.

tkrevh avatar tkrevh commented on June 19, 2024

Thank you @ferhatelmas, we appreciate you 👏

from stream-django.

ferhatelmas avatar ferhatelmas commented on June 19, 2024

https://github.com/GetStream/stream-django/releases/tag/1.7.0

let me know if you see any issues.

from stream-django.

tkrevh avatar tkrevh commented on June 19, 2024

@ferhatelmas yes, unfortuantely there is a serious issue - now django 3.2 can no longer start:
\lib\site-packages\stream_django\__init__.py", line 4, in <module> major, minor, _ = (int(i) for i in django.__version__.split('.')) ValueError: not enough values to unpack (expected 3, got 2)

Code is trying to unpack version 3.2 into three variables (underscore being the third one) and it fails on '3.2' string.
I would suggest replacing current line:

major, minor, _ = (int(i) for i in django.__version__.split('.'))

With:

version_list = [int(i) for i in django.__version__.split('.')]
major, minor = version_list[0], version_list[1]

from stream-django.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.