Skip to content

Commit

Permalink
Merge pull request #48 from AutoResearch/test/test-with-python-3.12
Browse files Browse the repository at this point in the history
test: include python 3.12 in the test suite
  • Loading branch information
hollandjg authored Nov 9, 2023
2 parents 5e8aef0 + 7a3c5e4 commit ecd15a4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@ license = {file = "LICENSE"}
requires-python = ">=3.8,<4"
dynamic = ["version"]

classifiers = [ # Optional
"Development Status :: 5 - Production/Stable",

"Intended Audience :: Developers",
"Intended Audience :: Science/Research",

"License :: OSI Approved :: MIT License",

"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",

"Topic :: Scientific/Engineering :: Artificial Intelligence"
]

dependencies = [
"numpy",
"matplotlib",
Expand Down

0 comments on commit ecd15a4

Please sign in to comment.