Skip to content

Commit

Permalink
TST: Add Linux job to use Python 3.13
Browse files Browse the repository at this point in the history
Ignore DeprecationWarning from ipykernel.

Add note about devdeps.
  • Loading branch information
pllim committed Dec 19, 2024
1 parent 0693231 commit e005cf3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ jobs:
toxenv: py310-test
allow_failure: false

- name: Linux - Python 3.13
os: ubuntu-latest
python: '3.13'
toxenv: py313-test
allow_failure: false

# FIXME: Upgrade to Python 3.13 after glue-viz/bqplot-image-gl#111 is resolved.
# This also runs on cron but we want to make sure new changes
# won't break this job at the PR stage.
- name: Python 3.12 with latest dev versions of key dependencies, and remote data
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ filterwarnings = [
"ignore:The unit 'Angstrom' has been deprecated in the VOUnit standard\\. Suggested.* 0\\.1nm\\.",
"ignore:((.|\n)*)Sentinel is not a public part of the traitlets API((.|\n)*)",
"ignore:datetime\\.datetime\\.utcfromtimestamp:DeprecationWarning", # asdf + dateutil<=2.8.2 + Python 3.12
"ignore:Parsing dates involving a day of month without a year:DeprecationWarning", # ipykernel<7
"ignore::DeprecationWarning:glue",
"ignore::DeprecationWarning:asteval",
"ignore:::specutils.spectra.spectrum1d",
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]
envlist =
py{310,311,312}-test{,-alldeps,-devdeps,-predeps}{-romandeps}{,-cov}
py{310,311,312,313}-test{,-alldeps,-devdeps,-predeps}{-romandeps}{,-cov}
linkcheck
codestyle
pep517
Expand Down

0 comments on commit e005cf3

Please sign in to comment.