We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b209c1e commit 8cb9a4aCopy full SHA for 8cb9a4a
3 files changed
.github/workflows/publish-to-test-pypi.yml
@@ -41,7 +41,7 @@ jobs:
41
run: python -c "import sys; print(sys.version)"
42
- name: Install sdist without optional dependencies
43
run: pip install dist/*.tar.gz
44
- - run: python -c 'import trx.version; print(trx.version.__version__)'
+ - run: python -c 'import trx; print(trx.__version__)'
45
- name: Install pytest
46
run: pip install pytest psutil pytest-console-scripts pytest-cov
47
- name: Run tests
.github/workflows/test.yml
@@ -32,6 +32,7 @@ jobs:
32
33
- name: Install dependencies
34
run: |
35
+ python -c "import trx; print(trx.__version__)"
36
python -m pip install --upgrade pip
37
python -m pip install -e .[dev,test]
38
trx/__init__.py
@@ -0,0 +1 @@
1
+from ._version import __version__ # noqa: F401
0 commit comments