Roundup Tracker - Issues

Message8002

Author rouilj
Recipients rouilj, tonimueller
Date 2024-04-22.14:54:59
Message-id <1713797699.63.0.973755658354.issue2551340@roundup.psfhosted.org>
In-reply-to
Hi Toni:

That is very strange. I just ran the following:

   % python3 -m venv .
   % bin/activate
   (v)% pip3 install -U pip  # get version 24.0
   (v)% pip3 install roundup
    Collecting roundup
      Downloading roundup-2.3.0.tar.gz (3.9 MB)
       ---------------------------------- 3.9/3.9 MB 3.4 MB/s eta 0:00:00
      Installing build dependencies ... done
      Getting requirements to build wheel ... done
      Installing backend dependencies ... done
      Preparing metadata (pyproject.toml) ... done
      Building wheels for collected packages: roundup
      Building wheel for roundup (pyproject.toml) ... done
      Created wheel for roundup: filename=roundup-2.3.0-py3-none-any.whl [...]
      Successfully built roundup
      Installing collected packages: roundup
      Successfully installed roundup-2.3.0
    (v)% bin/roundup-server --help

    Usage: roundup-server [options] [name=tracker home]*

    Options:
     -v            print the Roundup version number and exit
     -h            print this text and exit
     -S            create or update configuration file and exit
     -C <fname>    use configuration file <fname>
    [...]


It works as expected. If I run (still in the venv):

  (v)% python3
  Python 3.8.10 (default, Nov 22 2023, 10:22:35)
  [GCC 9.4.0] on linux
  Type "help", "copyright", "credits" or "license" for more information.
  >>> from roundup import __version__
  >>> __version__
  '2.3.0'
  >>> import sys
  >>> sys.modules['roundup']
  <module 'roundup' from '/[...]/develop/roundup/v/lib/python3.8/site-
packages/roundup/__init__.py'>

again works as expected and verifies that I am getting the roundup from the venv
and not from somewhere else on my system.

The __version__ variable in roundup/__init__.py is used by setup.py
to produce the version string in the published source tarball. So it's extremely
unlikely that __version__ was missing from the end of roundup/__init__py since it
would cause the build to fail.

How did you install Roundup 2.3.0? What OS are you running? What version of pip?

While the number of people using Roundup is not as large as I would like, saying
nobody uses it is incorrect.
History
Date User Action Args
2024-04-22 14:54:59rouiljsetmessageid: <1713797699.63.0.973755658354.issue2551340@roundup.psfhosted.org>
2024-04-22 14:54:59rouiljsetrecipients: + rouilj, tonimueller
2024-04-22 14:54:59rouiljlinkissue2551340 messages
2024-04-22 14:54:59rouiljcreate