We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec6f41 commit adbba3eCopy full SHA for adbba3e
.ci/common_setup.bash
@@ -17,6 +17,6 @@ git submodule update --init
17
18
python -m venv ~/venv
19
source ~/venv/bin/activate
20
-python -m pip install -U pip pytest wheel
+python -m pip install -U pip pytest wheel build
21
22
python -m pip install git+https://github.com/pymor/pymor.git#egg=pymor
setup.py
@@ -2,7 +2,10 @@
2
3
import os
4
import pathlib
5
-import versioneer
+import sys
6
+# versioneer (+dependencies) does not work in a pep518/7 context w/o modification here
7
+sys.path.append(os.path.dirname(__file__))
8
+import versioneer # noqa
9
10
from setuptools import setup, Extension
11
from setuptools import find_packages
0 commit comments