Skip to content

Commit

Permalink
drop python3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Teque5 committed Feb 8, 2024
1 parent 3be6b6e commit 5e2e85b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
@@ -1,6 +1,6 @@
name: Python package

on:
on:
push:
pull_request:
types: [opened, synchronize]
Expand All @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6"]
python-version: ["3.7", "3.9", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -20,8 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
pip install .[tests,apps]
- name: Test with pytest
run: |
pytest
5 changes: 2 additions & 3 deletions pyproject.toml
Expand Up @@ -7,7 +7,6 @@ classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -16,7 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dynamic = ["version", "readme"]
requires-python = ">=3.6"
requires-python = ">=3.7"
dependencies = [
"numpy", # for vector math
"jsonschema", # for spec validation
Expand Down Expand Up @@ -93,7 +92,7 @@ line-length = 120
legacy_tox_ini = '''
[tox]
skip_missing_interpreters = True
envlist = py{36,37,38,39,310,311,312}
envlist = py{37,38,39,310,311,312}
[testenv]
usedevelop = True
Expand Down

0 comments on commit 5e2e85b

Please sign in to comment.