File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1313 - CC_TEST_REPORTER_ID=48ee9103b2354a6b5c3028f4bc09a0705b79f27d013328a4234107ed385c16ec
1414before_install :
1515 - pip3 install --upgrade pip
16+ - pip3 install --upgrade setuptools
1617
1718install :
1819 - pip install -r requirements.txt
Original file line number Diff line number Diff line change 2727from .loader import load_entities_from_json
2828from .loader import load_entities_from_yaml
2929from .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
3434if __name__ == '__main__' :
3535 pass
You can’t perform that action at this time.
0 commit comments