Skip to content

Commit 0f3a0f7

Browse files
authored
Merge pull request #114 from reddit/bump_gevent
Bump gevent due to vulnerability
2 parents d197353 + f1aa82b commit 0f3a0f7

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/python-package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ['3.7', '3.8', '3.9', '3.10']
16+
python-version: ['3.8', '3.9', '3.10']
1717

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

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
build:
1010
os: ubuntu-20.04
1111
tools:
12-
python: "3.7"
12+
python: "3.8"
1313
rust: "1.61"
1414

1515
# Build documentation in the docs/ directory with Sphinx

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
]
2525

2626
intersphinx_mapping = {
27-
"python": ("https://docs.python.org/3.7", None),
27+
"python": ("https://docs.python.org/3.8", None),
2828
"baseplate": ("https://baseplate.readthedocs.io/en/stable/", None),
2929
}
3030

requirements-transitive.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ certifi==2020.12.5
77
chardet==4.0.0
88
click==7.1.2
99
coverage==5.3.1
10-
gevent==21.12.0
11-
greenlet==1.1.1
10+
gevent==23.9.0
11+
greenlet==2.0.0
1212
idna==2.10
1313
imagesize==1.2.0
1414
importlib-metadata==4.13.0

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
license="BSD",
1515
use_scm_version=True,
1616
packages=find_packages(),
17-
python_requires=">=3.7",
17+
python_requires=">=3.8",
1818
setup_requires=["setuptools_scm"],
1919
install_requires=[
2020
"baseplate>=2.0.0a1,<3.0",
@@ -28,7 +28,6 @@
2828
"Development Status :: 5 - Production/Stable",
2929
"License :: OSI Approved :: BSD License",
3030
"Programming Language :: Python",
31-
"Programming Language :: Python :: 3.7",
3231
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9",
3433
"Topic :: Software Development :: Libraries",

0 commit comments

Comments
 (0)