Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Describe the big picture of your changes here to communicate to the maintainers

## Types of changes

What types of changes does your code introduce to vtk2dolfinx?
What types of changes does your code introduce to openmc2dolfinx?
<!--Put an `x` in the boxes that apply-->

- [ ] Bugfix (non-breaking change which fixes an issue)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Run tests
shell: bash -l {0}
run: |
pytest test/ --cov vtk2dolfinx --cov-report xml --cov-report term
pytest test/ --cov openmc2dolfinx --cov-report xml --cov-report term

- name: Upload to codecov
uses: codecov/codecov-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Run tests
run: |
python3 -m pytest test/ --cov vtk2dolfinx --cov-report xml --cov-report term
python3 -m pytest test/ --cov openmc2dolfinx --cov-report xml --cov-report term

- name: Upload to codecov
uses: codecov/codecov-action@v5
Expand Down
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.testing.pytestArgs": [
"test"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# vtk2dolfinx
A repository to handle the conversion of functions in vtk files to dolfinx functions
# openmc2dolfinx
A repository to handle the conversion of results in OpenMC vtk files to dolfinx functions
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ignore:
- "vtk2dolfinx/_version.py" # ignore version file
- "openmc2dolfinx/_version.py" # ignore version file
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ authors = [
{ name = "James Dark", email = "darkj385@mit.edu"},
]
dynamic = ["version"]
name = "vtk2dolfinx"
description = "Convert .vtk files to dolfinx functions"
name = "openmc2dolfinx"
description = "Convert OpenMC .vtk files to dolfinx functions"
readme = "README/md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
Expand All @@ -32,12 +32,12 @@ lint = ["ruff", "mypy"]
docs = ["sphinx", "sphinx-book-theme", "sphinx-design", "matplotlib"]

[project.urls]
Homepage = "https://github.com/festim-dev/vtk2dolfinx"
Issues = "https://github.com/festim-dev/vtk2dolfinx/issues"
Homepage = "https://github.com/festim-dev/openmc2dolfinx"
Issues = "https://github.com/festim-dev/openmc2dolfinx/issues"


[tool.setuptools_scm]
write_to = "src/vtk2dolfinx/_version.py"
write_to = "src/openmc2dolfinx/_version.py"

[tool.mypy]
# Suggested at https://blog.wolt.com/engineering/2021/09/30/professional-grade-mypy-configuration/
Expand Down Expand Up @@ -74,7 +74,7 @@ ignore = ["UP007", "RUF012"]
allowed-confusables = ["σ"]

[tool.ruff.lint.isort]
known-first-party = ["vtk2dolfinx"]
known-first-party = ["openmc2dolfinx"]
known-third-party = [
"basix",
"dolfinx",
Expand Down
File renamed without changes.
Loading