You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make all tests pass on Python 3.9 to 3.12 inclusive
This change adds Python 3.10, 3.11, and 3.12 to 'tox.ini', and makes
changes to 'dev' dependencies, and to pytest filter warnings, such that
tests pass on Python 3.9 to 3.12 inclusive.
Copy file name to clipboardexpand all lines: pyproject.toml
+5-2
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ classifiers = [
22
22
"Programming Language :: Python :: 3.9",
23
23
"Programming Language :: Python :: 3.10",
24
24
"Programming Language :: Python :: 3.11",
25
+
"Programming Language :: Python :: 3.12",
25
26
]
26
27
license = {text = "MIT"}
27
28
dependencies = [
@@ -47,10 +48,10 @@ dev = [
47
48
"moto[s3,sqs]",
48
49
"mypy-boto3-s3",
49
50
"mypy",
50
-
"numpy",
51
+
"numpy>=1.26.4",
51
52
"pre-commit",
52
53
"psycopg2",
53
-
"pyarrow-stubs",
54
+
"pyarrow-stubs>=10.0.1.9",
54
55
"pytest-django",
55
56
"pytest-mock",
56
57
"pytest",
@@ -209,6 +210,8 @@ section-order = [
209
210
filterwarnings = [
210
211
"error::RuntimeWarning",
211
212
"error::DeprecationWarning",
213
+
"ignore:datetime.datetime.utcfromtimestamp\\(\\) is deprecated and scheduled for removal in a future version:DeprecationWarning",
214
+
"ignore:datetime.datetime.utcnow\\(\\) is deprecated and scheduled for removal in a future version:DeprecationWarning",
212
215
"ignore:defusedxml.lxml:DeprecationWarning:zeep",
213
216
"ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3:DeprecationWarning:(graphene|singledispatch)",
0 commit comments