Skip to content

Commit fcf4a20

Browse files
feat(python): dropped python 3.6 support
1 parent f0df3c8 commit fcf4a20

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ MANIFEST
2424
coverage.xml
2525
report.xml
2626
node_modules/
27+
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<p align="center">
77
<a href="https://pypi.org/project/relative-to-now/">
8-
<img src="https://img.shields.io/badge/Python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue" alt="Python Version">
8+
<img src="https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9-blue" alt="Python Version">
99
</a>
1010
<a href="https://codecov.io/gh/Riverside-Healthcare/RelativeToNow">
1111
<img src="https://codecov.io/gh/Riverside-Healthcare/RelativeToNow/branch/master/graph/badge.svg?token=PHYGI9FI22" alt="Codecov Status">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"keywords": [],
1919
"author": "",
20-
"license": "ISC",
20+
"license": "GLP-3.0-or-later",
2121
"bugs": {
2222
"url": "https://github.com/Riverside-Healthcare/RelativeToNow/issues"
2323
},

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ packages = [
2626
]
2727

2828
[tool.poetry.dependencies]
29-
python = "^3.6"
29+
python = "^3.7.2"
3030

3131
[tool.poetry.dev-dependencies]

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39},format,lint
2+
envlist = py{37,38,39,310,311},format,lint
33
skip_missing_interpreters = True
44
isolated_build = True
55

@@ -20,8 +20,8 @@ deps =
2020
commands =
2121
pytest --cov --cov-branch --cov-report xml:coverage.xml --cov-report term-missing {posargs:}
2222
depends =
23-
py{37,38,39}: clean
24-
cov: py{37,38,39}
23+
py{37,38,39,310,311}: clean
24+
cov: py{37,38,39,310,311}
2525

2626

2727
[testenv:clean]

0 commit comments

Comments
 (0)