Skip to content

Commit

Permalink
Fix wheel upload, bump version to 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
peterspackman committed Aug 5, 2024
1 parent a18a5d1 commit dfd8e49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)

set(PROJECT_VERSION_MAJOR "0")
set(PROJECT_VERSION_MINOR "6")
set(PROJECT_VERSION_PATCH "1")
set(PROJECT_VERSION_PATCH "2")

project(occ
VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "occpy"
version = "0.6.1"
version = "0.6.2"
description = "A library for quantum chemistry"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/occpy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,6 @@ NB_MODULE(_occpy, m) {
#ifdef VERSION_INFO
m.attr("__version__") = MACRO_STRINGIFY(VERSION_INFO);
#else
m.attr("__version__") = "0.6.1";
m.attr("__version__") = "0.6.2";
#endif
}

0 comments on commit dfd8e49

Please sign in to comment.