Skip to content

Commit c69f4ea

Browse files
authored
🔧 Convert from pipenv to poetry (#81)
* 🔧 Convert from pipenv to poetry - Remove mypy.ini - Remove .pylintrc - Remove pipfile and lock - Remove setup.py - Update make commands - Update pyproject.toml - Update release workflow * 📝 Move from pipenv to poetry in docs Documentation updated removing pipenv recomendations
1 parent d4e753e commit c69f4ea

File tree

16 files changed

+1214
-1330
lines changed

16 files changed

+1214
-1330
lines changed

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ env:
66
PYTHON_VERSION: 3.8
77

88
jobs:
9-
code_analysis:
9+
code_analysis:
1010
name: Code Analysis
1111
runs-on: ubuntu-latest
12-
steps:
12+
steps:
1313
- name: Checkout Code
1414
uses: actions/checkout@v2
1515
- name: Set up Python ${{ env.PYTHON_VERSION }}

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,10 @@ jobs:
5555
python-version: ${{ env.PYTHON_VERSION }}
5656
- name: Change Directory
5757
run: cd ${{ github.workspace }}
58+
- name: Poetry Install
59+
run: pip install poetry
5860
- name: Get Version
59-
run: echo ::set-env name=PACKAGE_VERSION::$(echo $VERSION | python setup.py --version)
61+
run: echo ::set-env name=PACKAGE_VERSION::$(echo $VERSION | poetry version | cut -c23-27)
6062
- name: Create Release
6163
id: create_release
6264
uses: actions/[email protected]

0 commit comments

Comments
 (0)