Skip to content

Commit d603be9

Browse files
committed
chore: switch from poetry to ordinary setup (using setuptools)
1 parent 6b0e9fe commit d603be9

6 files changed

Lines changed: 48 additions & 1045 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ jobs:
1414
tests:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
18-
- uses: actions/setup-python@v2
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.x"
21-
- uses: abatilo/actions-poetry@v2.0.0
21+
cache: 'pip'
2222
- name: Install Project
23-
run: poetry install
23+
run: pip install --user .[dev]
2424
- name: Run tests
2525
run: |
26-
poetry run coverage run -m pytest -vv tests
27-
poetry run coverage report
28-
26+
mypy . || true
27+
pytest -vv tests

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__pycache__/
22
*.pyc
3-
epy_reader.egg-info/*
3+
epy_reader.egg-info/
44
.venv
55
.idea
66
dist
@@ -9,5 +9,3 @@ tmp/
99

1010
build/**
1111
!build/gen_pkgbuild.sh
12-
13-
.envrc

0 commit comments

Comments
 (0)