Skip to content

Commit e9e9d43

Browse files
committed
renamed to binding_exercise, updated links
1 parent 74bca00 commit e9e9d43

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# se-for-sci-hw6. Author : Prof. Henry Schreiner
1+
# Binding Exercise.
2+
3+
## Author : Prof. Henry Schreiner
24

35
[![Actions Status][actions-badge]][actions-link]
46

@@ -17,7 +19,7 @@ There's a C++ version you can compile directly and compare with
1719
etc. have been provided.
1820

1921
<!-- prettier-ignore-start -->
20-
[actions-badge]: https://github.com/APC524-F2023/homework-6/workflows/CI/badge.svg
21-
[actions-link]: https://github.com/APC524-F2023/homework-6/actions
22+
[actions-badge]: https://github.com/se-for-sci/binding-exercise/workflows/CI/badge.svg
23+
[actions-link]: https://github.com/se-for-sci/binding-exercise/actions
2224

2325
<!-- prettier-ignore-end -->

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["scikit-build-core", "pybind11"]
33
build-backend = "scikit_build_core.build"
44

55
[project]
6-
name = "se-for-sci-hw6"
6+
name = "binding-exercise"
77
version = "0.0.1"
88
description = "An example of a compiled package."
99
readme = "README.md"

tests/test_compiled.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from pytest import approx
44

5-
from se_for_sci_hw6 import HarmonicOscillator
5+
from binding_exercise import HarmonicOscillator
66

77

88
def test_simple():

tests/test_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
import se_for_sci_hw6 as m
3+
import binding_exercise as m
44

55

66
def test_version():

0 commit comments

Comments
 (0)