Skip to content

Commit

Permalink
Merge pull request #198 from dandi/py312
Browse files Browse the repository at this point in the history
Test against Python 3.12
  • Loading branch information
yarikoptic authored Nov 9, 2023
2 parents 7e60714 + d49cd80 commit 078e18f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test-nonetwork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- 3.9
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Set up environment
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- 3.9
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Set up environment
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
license = Apache 2.0
description = Schemata for DANDI archive project
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ commands =

[pytest]
addopts = --cov=dandischema --tb=short --durations=10
filterwarnings = error
filterwarnings =
error
# <https://github.com/dateutil/dateutil/issues/1284>
ignore:.*utcfromtimestamp.* is deprecated:DeprecationWarning:dateutil

[coverage:run]
parallel = True
Expand Down

0 comments on commit 078e18f

Please sign in to comment.