-
Notifications
You must be signed in to change notification settings - Fork 0
refactor: Create geos-geomechanics package #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: Create geos-geomechanics package #66
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In prevision of the update of the ci (#65) can you run the following command and commit the changes:
yapf -i --recursive ./geos-geomechanics/ --style .style.yapf
geos-geomechanics/pyproject.toml
Outdated
source = ["geos/geomechanics"] | ||
|
||
|
||
[tool.mypy] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this section can be removed since it will be managed by the config file at the root directory(cf #65).
build = [ | ||
"build ~= 1.2" | ||
] | ||
dev = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need only mypy and yapf packages
geos-geomechanics/pyproject.toml
Outdated
"Programming Language :: Python" | ||
] | ||
dynamic = ["dependencies"] | ||
requires-python = ">= 3.9" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
=3.10
geos-geomechanics/pyproject.toml
Outdated
] | ||
test = [ | ||
"pytest", | ||
"pytest-cov" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove pytest-cov since it is not used
This PR moves the basic classes and functions relative to geomechanics model and processing to a dedicated package
Closes #59