Skip to content

Commit db2a25e

Browse files
committed
drop 3.8 support lol
1 parent 2c091ad commit db2a25e

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

.github/workflows/analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Python
6060
uses: actions/setup-python@v1
6161
with:
62-
python-version: 3.8
62+
python-version: 3.9
6363

6464
- name: Set up Poetry
6565
uses: Gr1N/setup-poetry@v4

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
python-version: [ 3.8 ]
22+
python-version: [ 3.9 ]
2323

2424
steps:
2525
- name: Checkout source

.github/workflows/coverage_and_lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- name: Setup Python 3.8
15+
- name: Setup Python 3.9
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.8
18+
python-version: 3.9
1919

2020
- name: Install Python deps
2121
run: |
@@ -24,7 +24,7 @@ jobs:
2424
- name: Type Coverage
2525
uses: jakebailey/pyright-action@v1
2626
with:
27-
python-version: 3.8
27+
python-version: 3.9
2828
project: "pyproject.toml"
2929

3030
- name: Lint

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sphinx:
1010
builder: html
1111

1212
python:
13-
version: 3.8
13+
version: 3.9
1414
install:
1515
- method: pip
1616
path: .

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ classifiers = [
1313
"Intended Audience :: Developers",
1414
"Natural Language :: English",
1515
"Operating System :: OS Independent",
16-
"Programming Language :: Python :: 3.7",
17-
"Programming Language :: Python :: 3.8",
1816
"Programming Language :: Python :: 3.9",
1917
"Topic :: Internet",
2018
"Typing :: Typed",
@@ -32,7 +30,7 @@ packages = [
3230
"Issue Tracker" = "https://github.com/AbstractUmbra/mystbin.py/issues"
3331

3432
[tool.poetry.dependencies]
35-
python = "^3.8"
33+
python = "^3.9"
3634
aiohttp = "^3.7.4"
3735
requests = {version = "^2.24.0", optional = true}
3836
sphinx = { version = "^4.0.0", optional = true }

0 commit comments

Comments
 (0)