Skip to content

Commit 1a83457

Browse files
committed
omg ubuntu 3.7
1 parent fff487d commit 1a83457

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [macos-latest, windows-latest, ubuntu-latest]
22-
python-version: [3.7, 3.8, 3.9]
22+
python-version: [3.8, 3.9, 3.10]
2323

2424
steps:
2525

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
miniconda-version: "latest"
2626
activate-environment: occ
2727
channels: conda-forge
28-
python-version: 3.7
28+
python-version: 3.8
2929

3030
- name: build
3131
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: [3.7, 3.8, 3.9]
15+
python-version: [3.8, 3.9, 3.10]
1616

1717
steps:
1818
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ def read(*names, **kwargs):
4242
"Operating System :: Microsoft :: Windows",
4343
"Programming Language :: Python",
4444
"Programming Language :: Python :: 3",
45-
"Programming Language :: Python :: 3.7",
4645
"Programming Language :: Python :: 3.8",
4746
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
4848
"Programming Language :: Python :: Implementation :: CPython",
4949
],
5050
keywords=[],
@@ -56,7 +56,7 @@ def read(*names, **kwargs):
5656
include_package_data=True,
5757
zip_safe=False,
5858
install_requires=requirements,
59-
python_requires=">=3.7",
59+
python_requires=">=3.8",
6060
extras_require=optional_requirements,
6161
entry_points={
6262
"console_scripts": [],

0 commit comments

Comments
 (0)