fix: requirements.txt to reduce vulnerabilities #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: [push] | |
env: | |
python_package_name: converter-csv | |
folder_package_name: converter_csv | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.6, 3.7, 3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tools | |
run: | | |
python -m pip install --upgrade pip build setuptools wheel twine | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Build package | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Install locally | |
run: | | |
ls | |
ls dist | |
TOOL_CURRENT_VERSION=`sed -e 's/.*__version__ = "\(.*\)".*/\1/' ${{ env.folder_package_name }}/_version.py` | |
pip install dist/${{ env.folder_package_name }}-${TOOL_CURRENT_VERSION}-py3-none-any.whl | |
shell: bash | |
- name: pip show package | |
run: | | |
pip show ${{ env.python_package_name }} |