Skip to content

Commit

Permalink
Remove py 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmic committed Nov 7, 2023
1 parent 24ffb28 commit d656cc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def get_version():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: IPython',
'Framework :: Jupyter',
'Framework :: Matplotlib'
Expand All @@ -66,8 +65,10 @@ def get_version():
],
extras_require={
'testing': ['pytest', 'coverage', 'pytest-cov', 'pytest_cases'],
'docs': ['sphinx==5.0.2', 'sphinx_rtd_theme==0.5.0', 'sphinx_autodoc_typehints==1.11.1',
'nbsphinx==0.9.3', 'ipykernel', 'pandoc', 'ipympl']
'docs': [
'sphinx==5.0.2', 'sphinx_rtd_theme==0.5.0',
'sphinx_autodoc_typehints==1.11.1', 'nbsphinx==0.9.3',
'ipykernel', 'pandoc', 'ipympl'
]
}

)

0 comments on commit d656cc8

Please sign in to comment.