Done with: virtualenv .venv --python=python3.10 source .venv/bin/activate pip install 'setuptools<82' pip install --no-build-isolation xstatic-tv4 mkdir xstatic cp .venv/lib/python3.10/site-packages/xstatic/pkg xstatic The remaining files are copy-pasted from xstatic-angular-fileupload due to its similarities, with changes for package names (we could have reconstructed this from the 'dist-info' dir but that's more effort than it's worth). Finally, we make the necessary pkg_resources changes and bump the version so we can actually merge this thing. Signed-off-by: Stephen Finucane <stephen@that.guru>
10 lines
124 B
INI
10 lines
124 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py27,py33,py34
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|