Skip to content

Commit 394ada5

Browse files
committed
updated README
1 parent 91e3878 commit 394ada5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# python_cpp_example
22

3-
**WARNING**: I have significantly reorganized this repository, and a new blog post explaining the changes is forthcoming. If you'd like to see the version of the repository that corresponds to my original June 2017 blog post, go to [this release](https://github.com/benjaminjack/python_cpp_example/tree/v0.1).
4-
53
This repository contains an example Python module which wraps C++ code. The code presented here was designed to meet four requirements:
64

75
1. Python bindings for C++ code (using [`pybind11`](http://pybind11.readthedocs.io/en/stable/index.html) and built with [CMake](http://cmake.org))
86
2. Unit tests for C++ code (using [`catch`](http://catch-lib.net))
97
3. Unit tests for Python code (using `unittest`)
108
4. A `setuptools` setup.py script for building, installation, and testing
119

12-
Please see the [blog post that accompanies this repository](http://www.benjack.io/2017/06/12/python-cpp-tests.html) for more information.
10+
Please see the [blog post that accompanies this repository]() for more information.
11+
12+
**NOTE**: If you'd like to see the version of the repository that corresponds to my [original June 2017 blog post](http://www.benjack.io/2017/06/12/python-cpp-tests.html), go to [this release](https://github.com/benjaminjack/python_cpp_example/tree/v0.1). However, I no longer recommend using the repository structure from this old release.
1313

1414
# Installation
1515

tests/cpp_test.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import unittest
2-
import python_cpp_example
32
import subprocess
43
import os
54

0 commit comments

Comments
 (0)