Skip to content

Commit

Permalink
2023 python version bump
Browse files Browse the repository at this point in the history
* drop support for python 3.7
* add support for python 3.12

* bumps version of more-itertools

note: the latest version of more-itertools does not support 3.12 yet, but dev does. This is not suitable for publishing until a more-itertools update is produced
  • Loading branch information
lonnen committed Oct 17, 2023
1 parent 7a114ed commit 8150793
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion oops_all_itertools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

from more_itertools import * # noqa

__version__ = "2.0.2"
__version__ = "3.0.0"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ classifiers = [
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version", "description"]
dependencies = [
"more-itertools == 9.1.0",
"more-itertools == 10.1.0",
]

[project.urls]
Expand Down

0 comments on commit 8150793

Please sign in to comment.