Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uv, tox and Python 3.12 #168

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
license = {text = "MIT"}
dependencies = [
Expand All @@ -47,10 +48,10 @@ dev = [
"moto[s3,sqs]",
"mypy-boto3-s3",
"mypy",
"numpy",
"numpy>=1.26.4",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's worth a comment to explain why we need the version filter.

"pre-commit",
"psycopg2",
"pyarrow-stubs",
"pyarrow-stubs>=10.0.1.9",
"pytest-django",
"pytest-mock",
"pytest",
Expand Down Expand Up @@ -209,6 +210,8 @@ section-order = [
filterwarnings = [
"error::RuntimeWarning",
"error::DeprecationWarning",
"ignore:datetime.datetime.utcfromtimestamp\\(\\) is deprecated and scheduled for removal in a future version:DeprecationWarning",
"ignore:datetime.datetime.utcnow\\(\\) is deprecated and scheduled for removal in a future version:DeprecationWarning",
"ignore:defusedxml.lxml:DeprecationWarning:zeep",
"ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3:DeprecationWarning:(graphene|singledispatch)",
# https://github.com/ktosiek/pytest-freezegun/issues/35
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ nh3==0.2.18
# via readme-renderer
nodeenv==1.9.1
# via pre-commit
numpy==1.22.2
numpy==1.26.4
# via
# xocto (pyproject.toml)
# pandas
Expand Down Expand Up @@ -175,7 +175,7 @@ psycopg2==2.9.9
# via xocto (pyproject.toml)
pyarrow==17.0.0
# via xocto (pyproject.toml)
pyarrow-stubs==10.0.1.6
pyarrow-stubs==10.0.1.9
# via xocto (pyproject.toml)
pycparser==2.22
# via cffi
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
min_version = 4.0
envlist = py39
envlist = py3{9,10,11,12}

[testenv]
# Install wheels instead of source distributions for faster execution.
Expand Down