Skip to content

Commit

Permalink
Merge pull request #55 from ssciwr/bump_version
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
lkeegan authored Apr 11, 2022
2 parents 1778f28 + cf99ba9 commit a8f63f4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
4 changes: 1 addition & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
ignore:
- dependency-name: "actions/*"
interval: "monthly"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, macos-10.15, windows-2019]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: "recursive"

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, macos-10.15, windows-2019]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: "recursive"

Expand All @@ -35,7 +35,7 @@ jobs:

- uses: pypa/cibuildwheel@v2.4.0

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
project(covid-tda LANGUAGES CXX)

cmake_minimum_required(VERSION 3.11)

project(
hammingdist
VERSION 0.15.0
LANGUAGES CXX)

include(CTest)

set(CMAKE_POSITION_INDEPENDENT_CODE ON)
Expand Down
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ The following software is currently required if you build from scratch:
This sequence of commands lets you start from scratch:

```bash
git clone https://gitlab.dune-project.org/dominic/covid-tda.git
cd covid-tda
git clone https://github.com/ssciwr/hammingdist.git
cd hammingdist
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
Expand Down Expand Up @@ -58,8 +58,8 @@ OMP_NUM_THREADS=8 ./distance <path-to-input> <n>
This sequence of command should build the Python interface:

```
git clone --recursive https://gitlab.dune-project.org/dominic/covid-tda.git
cd covid-tda
git clone --recursive https://github.com/ssciwr/hammingdist.git
cd hammingdist
mkdir build
cd build
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def build_extension(self, ext):

setup(
name="hammingdist",
version="0.13.0",
version="0.15.0",
author="Dominic Kempf, Liam Keegan",
author_email="ssc@iwr.uni-heidelberg.de",
description="A fast tool to calculate Hamming distances",
Expand Down

0 comments on commit a8f63f4

Please sign in to comment.