Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6605e6d

Browse files
committedAug 14, 2023
Move metadata to PEP 621 format
1 parent a012d0f commit 6605e6d

File tree

5 files changed

+951
-97
lines changed

5 files changed

+951
-97
lines changed
 

‎.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,12 @@ jobs:
4545
sudo apt install bubblewrap
4646
export PIPENV_VENV_IN_PROJECT=1
4747
export PIP_IGNORE_INSTALLED=1
48-
pip install --no-cache-dir --user pip setuptools pipenv
48+
pip install --no-cache-dir --user pip setuptools pipenv build
4949
5050
- name: Run tests
5151
run: |
5252
pipenv shell
53-
pipenv install -e .
54-
if [ -f requirements.txt ]; then pipenv install --dev -r requirements.txt; fi
55-
if [ -f requirements-dev.txt ]; then pipenv install --dev -r requirements-dev.txt; fi
53+
pipenv install -d
5654
bwrap \
5755
--unshare-all \
5856
--clearenv \
@@ -68,6 +66,7 @@ jobs:
6866
--die-with-parent \
6967
--new-session \
7068
python -m pipenv run coverage run -m unittest
69+
exit
7170
7271
- name: Run linting
7372
run: pre-commit run --all-files

‎Pipfile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,24 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
auth0-python = {editable = true, path = "."}
87
aiohttp = "*"
98
requests = "*"
109
pyjwt = "*"
10+
auth0-python = {editable = true, path = "."}
1111

12-
[dev-packages]
12+
[dev-dependencies]
1313
black = "*"
1414
flake8 = "*"
1515
isort = "*"
1616
pre-commit = "*"
1717
pyupgrade = "*"
18-
19-
[test-packages]
2018
aioresponses = "*"
2119
callee = "*"
2220
coverage = "*"
2321
mock = "*"
24-
pre-commit = "*"
2522
pytest = "*"
2623
responses = "*"
27-
28-
[crypto-packages]
2924
cryptography = "*"
30-
31-
[docs-packages]
3225
sphinx = "*"
3326
sphinx-mdinclude = "*"
3427
sphinx-rtd-theme = "*"

0 commit comments

Comments
 (0)
Please sign in to comment.