8000 update CI for ubuntu 20.04 deprecation (#348) · certifi/python-certifi@c874142 · GitHub
[go: up one dir, main page]

Skip to content

Commit c874142

Browse files
authored
update CI for ubuntu 20.04 deprecation (#348)
* update CI for ubuntu 20.04 deprecation * Update setup.py * Update ci.yml
1 parent 275c9eb commit c874142

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
mypy:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414

1515
steps:
1616
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -22,18 +22,18 @@ jobs:
2222
run: mypy --strict certifi
2323

2424
test:
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-22.04
2626
strategy:
2727
matrix:
2828
python-version:
29-
- "3.6"
3029
- "3.7"
3130
- "3.8"
3231
- "3.9"
3332
- "3.10"
3433
- "3.11"
3534
- "3.12"
3635
- "3.13"
36+
- "3.14-dev"
3737
steps:
3838
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,10 @@
3636
],
3737
package_dir={"certifi": "certifi"},
3838
package_data={"certifi": ["*.pem", "py.typed"]},
39-
# data_files=[('certifi', ['certifi/cacert.pem'])],
4039
include_package_data=True,
4140
zip_safe=False,
4241
license="MPL-2.0",
43-
python_requires=">=3.6",
42+
python_requires=">=3.7",
4443
classifiers=[
4544
"Development Status :: 5 - Production/Stable",
4645
"Intended Audience :: Developers",
@@ -49,7 +48,6 @@
4948
"Programming Language :: Python",
5049
"Programming Language :: Python :: 3",
5150
"Programming Language :: Python :: 3 :: Only",
52-
"Programming Language :: Python :: 3.6",
5351
"Programming Language :: Python :: 3.7",
5452
"Programming Language :: Python :: 3.8",
5553
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)
0