Skip to content

Commit

Permalink
Fix for python 3.12 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
em1208 committed Sep 19, 2024
1 parent c72224e commit 4e52955
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ requires = [
"lxml >= 4.8",
"pandas >= 1.3",
"pydantic >=1.9.2, < 2.0"]
requires-python = ">=3.9.6,<3.12"
requires-python = ">=3.9.6"
keywords = "statistics, SDMX, pandas, data, economics, science"
classifiers = [
"Intended Audience :: Developers",
Expand All @@ -29,17 +29,20 @@ classifiers = [
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: Apache Software License"]

[tool.flit.metadata.requires-extra]
[tool.flit.metadata.requires-extra]
cache = ["requests_cache >= 0.9.5"]
schema = ["appdirs >= 1.4"]
doc = ["sphinx >= 5.2",
doc = ["sphinx >= 5.2",
"IPython >= 7.20"]
test = ["pytest >= 5",
"requests-mock >= 1.4"]
test = [
"pytest >= 5",
"requests-mock >= 1.4",
"pytest-cov >= 5"
]

[tool.flit.metadata.urls]
Homepage = "https://pandasdmx.readthedocs.io/en/latest/"

[tool.flit.sdist]
include = ["LICENSE", 'README.rst']
exclude = ['pandasdmx/tests']
exclude = ['pandasdmx/tests']

0 comments on commit 4e52955

Please sign in to comment.