GithubHelp home page GithubHelp logo

Comments (3)

mtchavez avatar mtchavez commented on August 11, 2024

I suppose this approach could be re-vamped in some way. The Version class is mostly set up so that it can be locked down in the code. It can be useful to have a class for the version of your package so that you can do any checks in the code for branching logic, deprecation warnings, etc. I am open to seeing if there are better ways at doing this if you have any suggestions.

from python-package-boilerplate.

jhagege avatar jhagege commented on August 11, 2024

Your explanation makes a lot of sense.

Although I don't manage to fetch the version number once the package is installed.
i.e:

# setup.py
setuptools.setup(
    name="mypackage",
    version=Version("1.0.0-rc.2").number,
)

pip install -r requirements.txt

from mypackage.version import Version
print(Version.number)

but I get

AttributeError: type object 'Version' has no attribute 'number'

from python-package-boilerplate.

mtchavez avatar mtchavez commented on August 11, 2024

Number is an instance method so you would have to do Version('1.0.0-rc.2').number to get a string of the version. In other languages I have done this where it allows you to get the parts of the version i.e. major, minor, patch. Thinking this could maybe be cleaned up a bit.

from python-package-boilerplate.

Related Issues (1)

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.