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
6 changes: 5 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
# working-directory: ./${{ matrix.package-name }}
run: |
python -m pip install --upgrade pip
python -m pip install pytest yapf toml


DEPS="${{ matrix.dependencies || '' }}"

Expand All @@ -121,6 +121,10 @@ jobs:

echo "Installing main package..."
python -m pip install ./${{ matrix.package-name }}/[test]
# LWS Install setuptools first to provide pkg_resources for older plugins
python -m pip install setuptools
python -m pip install "pytest>=8.0.0" yapf toml "pytest-html>=4.0.0"

- name: Lint with yapf
# working-directory: ./${{ matrix.package-name }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion geos-geomechanics/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]
dependencies=[
"geos-utils",
"vtk >= 9.3",
"vtk >= 9.3, < 9.6",
"numpy >= 2.2",
"pandas >= 2.2",
"typing_extensions >= 4.12",
Expand Down
2 changes: 1 addition & 1 deletion geos-mesh/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
requires-python = ">=3.10"

dependencies = [
"vtk >= 9.3",
"vtk >= 9.3, < 9.6",
"networkx >= 2.4",
"tqdm >= 4.67",
"numpy >= 2.2",
Expand Down
3 changes: 2 additions & 1 deletion geos-processing/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
"geos-geomechanics",
"geos-utils",
"geos-mesh",
"vtk >= 9.3",
"vtk >= 9.3, < 9.6",
"numpy >= 2.2",
"typing_extensions >= 4.12",
]
Expand All @@ -44,6 +44,7 @@ Documentation = "https://geosx-geosx.readthedocs-hosted.com/projects/geosx-geosp
Repository = "https://github.com/GEOS-DEV/geosPythonPackages.git"
"Bug Tracker" = "https://github.com/GEOS-DEV/geosPythonPackages/issues"


[project.optional-dependencies]
build = [
"build ~= 1.2"
Expand Down
2 changes: 2 additions & 0 deletions geos-trame/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ keywords = [
]

dependencies = [
"setuptools",
"typing-extensions==4.12.2",
"trame==3.6.5",
"trame-vuetify==2.7.1",
Expand Down Expand Up @@ -66,6 +67,7 @@ dev = [
"pre-commit"
]
test = [
"setuptools",
"pytest==8.3.3",
"pytest-seleniumbase==4.31.6",
"pixelmatch==0.3.0",
Expand Down
1 change: 1 addition & 0 deletions geos-trame/tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pytest
pytest-seleniumbase
pytest-xprocess
setuptools