Skip to content

Commit 615a080

Browse files
committed
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.
1 parent 7fb9540 commit 615a080

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

pyproject.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.9",
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
2526
]
2627
license = {text = "MIT"}
2728
dependencies = [
@@ -47,10 +48,10 @@ dev = [
4748
"moto[s3,sqs]",
4849
"mypy-boto3-s3",
4950
"mypy",
50-
"numpy",
51+
"numpy>=1.26.4",
5152
"pre-commit",
5253
"psycopg2",
53-
"pyarrow-stubs",
54+
"pyarrow-stubs>=10.0.1.9",
5455
"pytest-django",
5556
"pytest-mock",
5657
"pytest",
@@ -209,6 +210,8 @@ section-order = [
209210
filterwarnings = [
210211
"error::RuntimeWarning",
211212
"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",
212215
"ignore:defusedxml.lxml:DeprecationWarning:zeep",
213216
"ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3:DeprecationWarning:(graphene|singledispatch)",
214217
# https://github.com/ktosiek/pytest-freezegun/issues/35

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ nh3==0.2.18
136136
# via readme-renderer
137137
nodeenv==1.9.1
138138
# via pre-commit
139-
numpy==1.22.2
139+
numpy==1.26.4
140140
# via
141141
# xocto (pyproject.toml)
142142
# pandas
@@ -175,7 +175,7 @@ psycopg2==2.9.9
175175
# via xocto (pyproject.toml)
176176
pyarrow==17.0.0
177177
# via xocto (pyproject.toml)
178-
pyarrow-stubs==10.0.1.6
178+
pyarrow-stubs==10.0.1.9
179179
# via xocto (pyproject.toml)
180180
pycparser==2.22
181181
# via cffi

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
min_version = 4.0
3-
envlist = py39
3+
envlist = py3{9,10,11,12}
44

55
[testenv]
66
# Install wheels instead of source distributions for faster execution.

0 commit comments

Comments
 (0)