File tree Expand file tree Collapse file tree 5 files changed +3
-8
lines changed Expand file tree Collapse file tree 5 files changed +3
-8
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
3231 python -m pip install flake8 pytest
3332 pip install -r requirements.txt
34- pip install . --use-feature=in-tree-build
3533 - name : Lint with flake8
3634 run : |
3735 # stop the build if there are Python syntax errors or undefined names
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
30- pip install . --use-feature=in-tree-build
3129 pip install build
3230 - name : Build package
3331 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
1716install :
1817 - pip install -r requirements.txt
1918 - pip install . --use-feature=in-tree-build
Original file line number Diff line number Diff line change 11[metadata]
22name = sqlalchemyseed
3- version = 1.0.0
3+ version = attr: sqlalchemyseed.__version__
44description = SQLAlchemy Seeder
55long_description = file: README.md
66long_description_content_type = text/markdown
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 as importlib_metadata
3130
32- __version__ = importlib_metadata .version ('sqlalchemyseed' )
31+
32+ __version__ = "1.0.0"
3333
3434if __name__ == '__main__' :
3535 pass
You can’t perform that action at this time.
0 commit comments