Skip to content

Commit

Permalink
drop 36
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanbconaway committed Nov 21, 2023
1 parent 9a374ad commit 99c417c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- python-version: "3.6"
os: "ubuntu-20.04"

steps:
- uses: actions/checkout@v3
Expand All @@ -26,14 +23,7 @@ jobs:
with:
path: ~/.cache/pip
key: |
${{
format(
'pip-{0}-{1}-{2}',
runner.os,
matrix.python-version,
hashFiles('setup.py')
)
}}
${{ format('pip-{0}-{1}', matrix.python-version, hashFiles('setup.py')) }}
- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-3.9-${{ hashFiles('setup.py') }}
key: pip-3.9-${{ hashFiles('setup.py') }}

- name: Install Dependencies
run: |
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

DEV_REQUIRES = [
"pytest==7.*",
"tox>=3,<5",
"tox==4.*",
"black==23.*",
"pytest-cov==4.*",
"codecov==2.*",
Expand All @@ -40,7 +40,6 @@
author_email="nolanbconaway@gmail.com",
url="https://github.com/nolanbconaway/underground",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py36,py37,py38,p39,py310,py311,py312
envlist = py37,py38,p39,py310,py311,py312
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit 99c417c

Please sign in to comment.