Skip to content

Commit e25326c

Browse files
authored
Merge pull request #1178 from RogerSelwyn/remove-python-3.9
Remove support for Python 3.9
2 parents 1e28560 + 067146e commit e25326c

5 files changed

Lines changed: 26 additions & 28 deletions

File tree

docs/latest/_sources/getting_started.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ or use uv:
2020
2121
uv add o365
2222
23-
Requirements: >= Python 3.9
23+
Requirements: >= Python 3.10
2424

2525
Project dependencies installed by pip:
2626

docs/latest/getting_started.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h3>Stable Version (PyPI)<a class="headerlink" href="#stable-version-pypi" title
115115
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="go">uv add o365</span>
116116
</pre></div>
117117
</div>
118-
<p>Requirements: &gt;= Python 3.9</p>
118+
<p>Requirements: &gt;= Python 3.10</p>
119119
<p>Project dependencies installed by pip:</p>
120120
<ul class="simple">
121121
<li><p>requests</p></li>

docs/source/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ or use uv:
2020
2121
uv add o365
2222
23-
Requirements: >= Python 3.9
23+
Requirements: >= Python 3.10
2424

2525
Project dependencies installed by pip:
2626

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "o365"
44
version = "2.1.5"
55
description = "O365 - Microsoft Graph and Office 365 API made easy"
66
readme = "README.md"
7-
requires-python = ">=3.9"
7+
requires-python = ">=3.10"
88
authors = [
99
{ name = "Alejcas", email = "alejcas@users.noreply.github.com" },
1010
{ name = "Narcolapser", email = "narcolapser@users.noreply.github.com" },
@@ -15,7 +15,6 @@ classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Intended Audience :: Developers",
1717
"License :: OSI Approved :: Apache Software License",
18-
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",

setup.py

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@
77

88
# Available classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
99
CLASSIFIERS = [
10-
'Development Status :: 4 - Beta',
11-
'Intended Audience :: Developers',
12-
'License :: OSI Approved :: Apache Software License',
13-
'Topic :: Office/Business :: Office Suites',
14-
'Topic :: Software Development :: Libraries',
15-
'Programming Language :: Python',
16-
'Programming Language :: Python :: 3 :: Only',
17-
'Programming Language :: Python :: 3.9',
18-
'Programming Language :: Python :: 3.10',
19-
'Programming Language :: Python :: 3.11',
20-
'Programming Language :: Python :: 3.12',
21-
'Programming Language :: Python :: 3.13',
22-
'Operating System :: OS Independent',
10+
"Development Status :: 4 - Beta",
11+
"Intended Audience :: Developers",
12+
"License :: OSI Approved :: Apache Software License",
13+
"Topic :: Office/Business :: Office Suites",
14+
"Topic :: Software Development :: Libraries",
15+
"Programming Language :: Python",
16+
"Programming Language :: Python :: 3 :: Only",
17+
"Programming Language :: Python :: 3.10",
18+
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
21+
"Operating System :: OS Independent",
2322
]
2423

2524

@@ -38,20 +37,20 @@ def read(fname):
3837
]
3938

4039
setup(
41-
name='o365',
40+
name="o365",
4241
version=VERSION,
4342
packages=find_packages(),
44-
url='https://github.com/O365/python-o365',
45-
license='Apache License 2.0',
46-
author='Alejcas, Roycem90, Narcolapser',
47-
author_email='alejcas@users.noreply.github.com',
48-
maintainer='alejcas',
49-
maintainer_email='alejcas@users.noreply.github.com',
50-
description='Microsoft Graph API made easy',
51-
long_description=read('README.md'),
43+
url="https://github.com/O365/python-o365",
44+
license="Apache License 2.0",
45+
author="Alejcas, Roycem90, Narcolapser",
46+
author_email="alejcas@users.noreply.github.com",
47+
maintainer="alejcas",
48+
maintainer_email="alejcas@users.noreply.github.com",
49+
description="Microsoft Graph API made easy",
50+
long_description=read("README.md"),
5251
long_description_content_type="text/markdown",
5352
classifiers=CLASSIFIERS,
54-
python_requires=">=3.9",
53+
python_requires=">=3.10",
5554
install_requires=requires,
5655
setup_requires=["wheel"],
5756
)

0 commit comments

Comments
 (0)