Skip to content

Commit

Permalink
Restrict Python version <3.12
Browse files Browse the repository at this point in the history
Piecash 1.2.0 (latest release) still contains usage of the deprecated `imp` module.

Next release of piecash should fix this, see sdementen/piecash#212.
  • Loading branch information
joshuabach authored Oct 23, 2023
1 parent 2c04535 commit e374df2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
},

# Because of datetime.date.fromisoformat (3.7) and importlib.metadata (3.8)
python_requires=">=3.8",
# Piecash requires <3.12 until e9faaa3 is included in release over there
python_requires=">=3.8,<3.12",

install_requires=[
'Flask==2.0.2',
Expand Down

0 comments on commit e374df2

Please sign in to comment.