Questions tagged [python-versioneer]

7 questions
2
votes
0 answers

Versioning multiple projects with versioneer within a single git repository

I have a single, large git repo with many different projects (not submodules). A few of these projects are Python projects for which I'd like to track versioning with Python's versioneer, others may be completely independent projects (say, in…
Katie
  • 918
  • 1
  • 5
  • 18
1
vote
1 answer

How to update versioneer version prefix?

This question probably has been asked before, but I cannot find anything related with the stackoverflow search tool. The problem is that versioneer ignores version update in setup.cfg: [versioneer] vcs = git versionfile_source =…
Soerendip
  • 7,684
  • 15
  • 61
  • 128
0
votes
2 answers

Numpy tests cannot parse version

After forking the Numpy repository and setting up the dev container for it, I attempted to run python runtests.py -v but it returns the following error Building, see build.log... Traceback (most recent call last): File…
agctute
  • 123
  • 6
0
votes
0 answers

reportMissingImports Python. Problems with the interpreter and how to upgrade versions of Python on Windows

I'm learning Python and I've installed 2 versions of Python: 3.10.6 and 3.11.1 and I've both versions on Visual Studio Code. How do I upgrade all to use just the version 3.11.1 in Visual Studio or what is the topic I have to learn to use different…
Xorvak
  • 1
  • 1
0
votes
0 answers

import versioneer gives SyntaxError on *MATCH_ARGS

python setup.py build --compiler=mingw32 Traceback (most recent call last): File "setup.py", line 4, in import versioneer File "/cygdrive/c/Users/Mansi/Downloads/cvxopt-1.3.0/versioneer.py", line 1194 "--always", "--long",…
Mansi
  • 11
  • 3
0
votes
1 answer

Python Versioneer is not generating a -version.py file

I am trying to add versioning to my current Python project. I have installed Versioneer and setup the setup.cfg file to the best of my understanding of the documentation. When I run versioneer install I receive an error stating it cannot find the…
devopsrc
  • 3
  • 1
-1
votes
1 answer

how to downgrade python3.8.10 to 3.5.6 on ubuntu via the terminal?

In order to install older version of keras, tensorflow 1.10.0 is needed. That should solve compatibility issues with an algorithm I am trying to run. TO be able to install these older versions of tensorflow and keras and older version of python is…