Skip to content

Commit 703ffa8

Browse files
committed
Fix
1 parent 3d1b13b commit 703ffa8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/cd_pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip
22-
pip install setuptools wheel twine
22+
pip install setuptools wheel twine==4.0.2
2323
python -m pip install --upgrade pkginfo
2424
2525
- name: Build

.github/workflows/ci_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
python -m pip install --upgrade pip
4949
pip install pytest pytest-cov
50-
pip install -e syngular
50+
pip install -e syngular/
5151
5252
- name: Test with pytest
5353
run: |

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from setuptools import setup, find_packages
22
from pathlib import Path
3-
from version import __version__ as version
43

54

65
this_directory = Path(__file__).parent

0 commit comments

Comments
 (0)