Skip to content

Commit

Permalink
Fix: implement comments from code review thanks @j042
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-fricke committed Nov 17, 2023
1 parent ce08524 commit c70167a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-20.04, macos-latest]

steps:
Expand Down
10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
[project]
name = "gustaf"
authors = [
{name = "Jaewool Lee", email = "[email protected]"}
{name = "Jaewook Lee", email = "[email protected]"}
]
description = "Process and visualize numerical-analysis-geometries."
# fastapi uses hatling as build backend and it can use dynamic versioning
# poetry needs static versioning (version defined in pyproject.toml)
# setuptools (package itself) still uses the setup.py files, but as build
# system supports dynamic versioning
keywords = [
"numerical-analysis",
"geometry",
"visualization",
"mesh",
]
requires-python = ">=3.6"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
Expand All @@ -25,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
Expand All @@ -44,7 +41,6 @@ all = [
]
test = [
"pytest",
"pytest-cov",
"funi",
"napf",
]
Expand Down

0 comments on commit c70167a

Please sign in to comment.