Skip to content

Commit

Permalink
rm py36 support (#20)
Browse files Browse the repository at this point in the history
* rm py36 support

Signed-off-by: Can Güney Aksakalli <[email protected]>

* rm 3.6 from setup

Signed-off-by: Can Güney Aksakalli <[email protected]>

* rm 3.6 from CI

Signed-off-by: Can Güney Aksakalli <[email protected]>

* Update setup.cfg

Signed-off-by: Can Güney Aksakalli <[email protected]>

* update py versions

* fix 3.10 definition

* add classifiers

---------

Signed-off-by: Can Güney Aksakalli <[email protected]>
Co-authored-by: Can Gueney Aksakalli <[email protected]>
  • Loading branch information
aksakalli and Can Gueney Aksakalli authored Dec 4, 2024
1 parent 4099468 commit 1434ada
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.9, 3.10.x, 3.11, 3.12]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx==4.4.0
sphinx_rtd_theme==1.0.0
sphinx
sphinx_rtd_theme
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.md
description_file = README.md
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,15 @@
"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",
"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",
"Operating System :: OS Independent",
],
packages=["openlr"],
install_requires=[],
test_suite="tests",
)
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -28,7 +28,7 @@ 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
3.9: py39
3.10: py310
3.11: py311
3.12: py312, docs, coverage, black

0 comments on commit 1434ada

Please sign in to comment.