From d567c4e07eb99db97c33ee33fa40a62f2dc1f001 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20G=C3=BCney=20Aksakalli?= Date: Tue, 3 Dec 2024 18:52:44 +0100 Subject: [PATCH 1/7] rm py36 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Can Güney Aksakalli --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index 87d2e80..fa9291a 100644 --- a/tox.ini +++ b/tox.ini @@ -28,7 +28,6 @@ commands = sphinx-build -q -W -b html "." "_build" [gh-actions] python = - 3.6: py36 3.7: py37 3.8: py38 3.9: py39, docs, coverage, black From 5f6edbda0dd9258d590866e224bcea3fdf1ce809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20G=C3=BCney=20Aksakalli?= Date: Tue, 3 Dec 2024 18:53:33 +0100 Subject: [PATCH 2/7] rm 3.6 from setup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Can Güney Aksakalli --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index b7b7e63..187323f 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ "Natural Language :: English", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", From a5447465547a2c6a7b772774c0952c76df67a1d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20G=C3=BCney=20Aksakalli?= Date: Tue, 3 Dec 2024 18:54:06 +0100 Subject: [PATCH 3/7] rm 3.6 from CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Can Güney Aksakalli --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 946ae51..cd71e07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v1 From c3192637e3e7662821cc37062e3ac2b13fce2e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20G=C3=BCney=20Aksakalli?= Date: Wed, 4 Dec 2024 00:01:21 +0100 Subject: [PATCH 4/7] Update setup.cfg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Can Güney Aksakalli --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index b88034e..08aedd7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md +description_file = README.md From 94131723740367e80a7acb4066e53454dac68b41 Mon Sep 17 00:00:00 2001 From: Can Gueney Aksakalli Date: Wed, 4 Dec 2024 01:12:29 +0100 Subject: [PATCH 5/7] update py versions --- .github/workflows/ci.yml | 2 +- docs/requirements.txt | 4 ++-- setup.py | 1 - tox.ini | 13 +++++++------ 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd71e07..2a8d954 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.9, 3.10, 3.11, 3.12] steps: - uses: actions/checkout@v1 diff --git a/docs/requirements.txt b/docs/requirements.txt index 9364148..8213302 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,2 @@ -sphinx==4.4.0 -sphinx_rtd_theme==1.0.0 +sphinx +sphinx_rtd_theme diff --git a/setup.py b/setup.py index 187323f..86fd712 100644 --- a/setup.py +++ b/setup.py @@ -38,5 +38,4 @@ ], packages=["openlr"], install_requires=[], - test_suite="tests", ) diff --git a/tox.ini b/tox.ini index fa9291a..3f608ca 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ - [tox] -envlist = py{36,37,38,39}, black, coverage, docs +envlist = py{39,310,311,312}, black, coverage, docs [testenv] -commands = python setup.py test +deps = pytest +commands = pytest tests [testenv:black] deps = black @@ -28,6 +28,7 @@ commands = sphinx-build -q -W -b html "." "_build" [gh-actions] python = - 3.7: py37 - 3.8: py38 - 3.9: py39, docs, coverage, black + 3.9: py39 + 3.10: py310 + 3.11: py311 + 3.12: py312, docs, coverage, black From aa08902895660d3d617f468a533594ffc44798ab Mon Sep 17 00:00:00 2001 From: Can Gueney Aksakalli Date: Wed, 4 Dec 2024 01:23:25 +0100 Subject: [PATCH 6/7] fix 3.10 definition --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a8d954..c2f9473 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: [3.9, 3.10.x, 3.11, 3.12] steps: - uses: actions/checkout@v1 From 992cd297e65867ea668a581f198b50cc27c769ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Can=20G=C3=BCney=20Aksakalli?= Date: Wed, 4 Dec 2024 01:33:00 +0100 Subject: [PATCH 7/7] add classifiers --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 86fd712..66880fd 100644 --- a/setup.py +++ b/setup.py @@ -28,9 +28,10 @@ "Natural Language :: English", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Scientific/Engineering :: GIS",