Giter VIP home page Giter VIP logo

Comments (6)

luzfcb avatar luzfcb commented on July 26, 2024

@johngamarra this is a bug.

this is happening because setup.py use Python2 only print function, and in Python3 is now mandatory use ( ) on print function

Python2 only:
print "You probably want to also tag the version now:"

Python 2 and Python3 compatible

print("You probably want to also tag the version now:")

I have not tested, but you can download https://github.com/vintasoftware/django-role-permissions/archive/master.zip , unzip and change the setup.py file

from:

    print "You probably want to also tag the version now:"
    print "  git tag -a %(version)s -m 'version %(version)s'" % args
    print "  git push --tags"

to:

    print("You probably want to also tag the version now:")
    print("  git tag -a %(version)s -m 'version %(version)s'" % args)
    print("  git push --tags")

after, run python setup.py install

that said, the author of this library left no explicit if it also works with Python3, because some other problems may occur

from django-role-permissions.

luzfcb avatar luzfcb commented on July 26, 2024

@johngamarra
you can learn more about this by reading:

https://docs.python.org/3/howto/pyporting.html
http://python3porting.com/foreword.html
http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/key_differences_between_python_2_and_3.ipynb

from django-role-permissions.

filipeximenes avatar filipeximenes commented on July 26, 2024

Thanks @luzfcb!
django-role-permissions is not currently python3 compatible, but I do wish it was. It would be great if someone could help me with this.

from django-role-permissions.

balavec avatar balavec commented on July 26, 2024

Is it only because of the print function or is there something else ...
@luzfcb is there an alternative for Python3 ?

from django-role-permissions.

filipeximenes avatar filipeximenes commented on July 26, 2024

This is now Python 3 compatible. =)

@balavec
@luzfcb
@johngamarra

from django-role-permissions.

luzfcb avatar luzfcb commented on July 26, 2024

🎉 👯 🎉

from django-role-permissions.

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.