1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-07-22 18:57:39 +02:00

fix bug with Python version import

This commit is contained in:
q-posev 2021-08-30 15:08:26 +03:00
parent cf51d3971f
commit ad44e29e95
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ python3 setup.py sdist bdist_wheel
# Install pytrexio in the current environment from the aforementioned wheel # Install pytrexio in the current environment from the aforementioned wheel
# --force-reinstall is needed here because build-system pre-installs pytrexio in the environment # --force-reinstall is needed here because build-system pre-installs pytrexio in the environment
# but does not install things in the corresponding site-packages directory # but does not install things in the corresponding site-packages directory
python3 -m pip install dist/trexio-0.1-*.whl --force-reinstall python3 -m pip install dist/trexio-*.whl --force-reinstall
# Run the command below in the root directory to install the package in 'editable' (-e) mode without dependencies (--no-deps) # Run the command below in the root directory to install the package in 'editable' (-e) mode without dependencies (--no-deps)
#python -m pip install -e . --no-deps #python -m pip install -e . --no-deps

View File

@ -1 +1 @@
from ._version import __version__ #from ._version import __version__