Skip to content

Commit d22d8a5

Browse files
drops 3.6 and adds snakesay.
1 parent da86b5a commit d22d8a5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
10+
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
1111

1212
name: Python ${{ matrix.python-version }}
1313
steps:

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,19 @@ classifiers = [
1010
"Intended Audience :: Developers",
1111
"Topic :: Software Development :: Libraries",
1212
"License :: OSI Approved :: MIT License",
13+
"Programming Language :: Python :: 3.10",
14+
"Programming Language :: Python :: 3.9",
1315
"Programming Language :: Python :: 3.8",
1416
"Programming Language :: Python :: 3.7",
15-
"Programming Language :: Python :: 3.6",
1617
]
1718
keywords = ["pythonanywhere", "api", "cloud", "web hosting"]
1819

1920
[tool.poetry.dependencies]
20-
python = "^3.6"
21+
python = "^3.7"
2122
pytest = "^7.0.0"
22-
requests = "^2.25.1"
2323
pytest-cov = "^3.0.0"
24+
requests = "^2.25.1"
25+
snakesay = "^0.10.1"
2426

2527
[tool.poetry.dev-dependencies]
2628
pytest = "^7.0.0"

0 commit comments

Comments
 (0)