Skip to content

Commit

Permalink
Ft build urls (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-fricke committed Nov 21, 2023
2 parents 41c55ec + f1eb591 commit 3c62c44
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_upload_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: pypi upload

on:
push:
branches: ["main", "ft-packaging"]
branches: ["main"]

jobs:
wheel_build_full:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/pre_commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: pre-commit

on:
pull_request:
push:
branches: [main]

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected]
2 changes: 1 addition & 1 deletion examples/poiseuille_flow_channel_shear_thinning.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def compute_quality_criterion(
def calculate_reward(
quality_criterions: np.ndarray,
last_quality_criterions: np.ndarray,
**kwargs
**kwargs,
) -> float:
"""Function that actually calculates the reward.
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ dynamic = [
file = "README.md"
content-type = "text/markdown"

[project.urls]
homepage = "https://github.com/clemens-fricke/releso"
documentation = "https://releso.readthedocs.io/en/latest/"
issues = "https://github.com/clemens-fricke/releso/issues"
repository = "https://github.com/clemens-fricke/releso.git"

[project.optional-dependencies]
all = [
"splinepy[all]"
Expand Down
2 changes: 1 addition & 1 deletion releso/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Current version.
"""
version = "0.1.0"
version = "0.1.1"

0 comments on commit 3c62c44

Please sign in to comment.