Skip to content

Commit

Permalink
Loosen the requirements to enable Python 3.12 install
Browse files Browse the repository at this point in the history
  • Loading branch information
JureZmrzlikar committed Feb 7, 2024
1 parent dcd982f commit f3836d2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
html_theme = 'sphinx_rtd_theme'

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
21 changes: 10 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,31 @@ classifiers = [
]
dependencies = [
"aiohttp~=3.9.3",
"requests>=2.6.0",
"requests",
"urllib3>=2;python_version >= '3.10'",
"slumber>=0.7.1",
"wrapt",
"pytz>=2018.4",
"tzlocal>=1.5.1",
"pandas>=1.0.0",
"pytz",
"tzlocal",
"pandas",
"tqdm",
"openpyxl",
"xlrd",
"boto3[crt]~=1.24",
"boto3-stubs[s3]~=1.24",
'importlib-metadata; python_version<"3.8"',
"boto3[crt]",
"boto3-stubs[s3]",
"packaging",
]
[project.optional-dependencies]
docs = [
"sphinx~=5.2.3",
"sphinx_rtd_theme~=1.0.0",
"sphinx",
"sphinx_rtd_theme",
# TODO: Consider using sphinx-pyproject in the future. At the time of this
# writing the missing feature was disability of sphinx-pyproject to detect
# dynamic project version
]
package = [
"twine~=4.0.1",
"check-manifest>=0.48",
"twine",
"check-manifest",
"build",
]
test = [
Expand Down

0 comments on commit f3836d2

Please sign in to comment.