Skip to content

Commit

Permalink
Update str
Browse files Browse the repository at this point in the history
  • Loading branch information
Thopic committed Sep 7, 2024
1 parent a2d1a13 commit ce6c94c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pathlib import Path
import setuptools

__version__ = '0.0.2'
__version__ = '0.0.1'
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

Expand Down
8 changes: 4 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ PYBIND11_MODULE(atriegc, m) {
.def(py::init<>(), "Generate a Trie for amino acids");


// #ifdef VERSION_INFO
// m.attr("__version__") = VERSION_INFO;
// #else
#ifdef VERSION_INFO
m.attr("__version__") = VERSION_INFO;
#else
m.attr("__version__") = "dev";
// #endif
#endif
}

0 comments on commit ce6c94c

Please sign in to comment.