From e6e1e1519f5102bd25300c765491b2a5c2d359b9 Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Mon, 2 Jan 2023 23:31:51 -0600 Subject: [PATCH 1/2] Add newer python versions to tox.ini --- tox.ini | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 2392345..69cd684 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,8 @@ [tox] -envlist = py36,py37 +envlist = py36,py37,py38,py39,py310,py311 skipsdist = true [testenv] -deps = pipenv==2018.11.14 -passenv = HOME -commands = - pipenv sync -d - pipenv run pytest +deps = .[test] +commands = python setup.py test From 9dac13edc2830b5838f3fd56f01486f8216efa29 Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Wed, 11 Jan 2023 14:33:54 -0600 Subject: [PATCH 2/2] Remove Pipfile Since it was only used in tox, we can remove it. --- Pipfile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Pipfile diff --git a/Pipfile b/Pipfile deleted file mode 100644 index d5d7ad5..0000000 --- a/Pipfile +++ /dev/null @@ -1,17 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] - -[dev-packages] -mastodon-py = {editable = true, extras = ["tests"], path = "."} -pytest = "<4" -pytest-runner = "*" -pytest-cov = "*" -vcrpy = "*" -pytest-vcr = "<1" -pytest-mock = "*" -requests-mock = "*" -