Skip to content

Commit 35def86

Browse files
authored
Merge pull request #4 from festim-dev/rename_repo
Rename repo to openmc2dolfinx
2 parents 0b2ed6c + eab6210 commit 35def86

8 files changed

Lines changed: 23 additions & 12 deletions

File tree

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Describe the big picture of your changes here to communicate to the maintainers
44

55
## Types of changes
66

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

1010
- [ ] Bugfix (non-breaking change which fixes an issue)

.github/workflows/ci_conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run tests
3131
shell: bash -l {0}
3232
run: |
33-
pytest test/ --cov vtk2dolfinx --cov-report xml --cov-report term
33+
pytest test/ --cov openmc2dolfinx --cov-report xml --cov-report term
3434
3535
- name: Upload to codecov
3636
uses: codecov/codecov-action@v5

.github/workflows/ci_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
2020
- name: Run tests
2121
run: |
22-
python3 -m pytest test/ --cov vtk2dolfinx --cov-report xml --cov-report term
22+
python3 -m pytest test/ --cov openmc2dolfinx --cov-report xml --cov-report term
2323
2424
- name: Upload to codecov
2525
uses: codecov/codecov-action@v5

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"[python]": {
3+
"editor.formatOnSave": true,
4+
"editor.defaultFormatter": "charliermarsh.ruff"
5+
},
6+
"python.testing.pytestArgs": [
7+
"test"
8+
],
9+
"python.testing.unittestEnabled": false,
10+
"python.testing.pytestEnabled": true
11+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# vtk2dolfinx
2-
A repository to handle the conversion of functions in vtk files to dolfinx functions
1+
# openmc2dolfinx
2+
A repository to handle the conversion of results in OpenMC vtk files to dolfinx functions

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ignore:
2-
- "vtk2dolfinx/_version.py" # ignore version file
2+
- "openmc2dolfinx/_version.py" # ignore version file

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ authors = [
88
{ name = "James Dark", email = "darkj385@mit.edu"},
99
]
1010
dynamic = ["version"]
11-
name = "vtk2dolfinx"
12-
description = "Convert .vtk files to dolfinx functions"
11+
name = "openmc2dolfinx"
12+
description = "Convert OpenMC .vtk files to dolfinx functions"
1313
readme = "README/md"
1414
requires-python = ">=3.9"
1515
license = { file = "LICENSE" }
@@ -32,12 +32,12 @@ lint = ["ruff", "mypy"]
3232
docs = ["sphinx", "sphinx-book-theme", "sphinx-design", "matplotlib"]
3333

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

3838

3939
[tool.setuptools_scm]
40-
write_to = "src/vtk2dolfinx/_version.py"
40+
write_to = "src/openmc2dolfinx/_version.py"
4141

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

7676
[tool.ruff.lint.isort]
77-
known-first-party = ["vtk2dolfinx"]
77+
known-first-party = ["openmc2dolfinx"]
7878
known-third-party = [
7979
"basix",
8080
"dolfinx",

0 commit comments

Comments
 (0)