Skip to content

Commit 050133f

Browse files
committed
Update setuptools
1 parent f4312c7 commit 050133f

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31+
python -m pip install --upgrade setuptools
3132
python -m pip install flake8 pytest
3233
pip install -r requirements.txt
3334
- name: Lint with flake8

.github/workflows/python-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29+
python -m pip install --upgrade setuptools
2930
pip install build
3031
- name: Build package
3132
run: python -m build

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313
- CC_TEST_REPORTER_ID=48ee9103b2354a6b5c3028f4bc09a0705b79f27d013328a4234107ed385c16ec
1414
before_install:
1515
- pip3 install --upgrade pip
16+
- pip3 install --upgrade setuptools
1617

1718
install:
1819
- pip install -r requirements.txt

src/sqlalchemyseed/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
from .loader import load_entities_from_json
2828
from .loader import load_entities_from_yaml
2929
from .loader import load_entities_from_csv
30-
import importlib.metadata
30+
import importlib_metadata
3131

32-
__version__ = importlib.metadata.version('sqlalchemyseed')
32+
__version__ = importlib_metadata.version('sqlalchemyseed')
3333

3434
if __name__ == '__main__':
3535
pass

0 commit comments

Comments
 (0)