Skip to content

Commit

Permalink
Update license to MIT in remaining places
Browse files Browse the repository at this point in the history
  • Loading branch information
shmulvad committed Mar 10, 2024
1 parent 63554b3 commit 67ca4bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_ARCHS_LINUX: "auto64"
CIBW_ARCHS_WINDOWS: "x86 AMD64"
CIBW_TEST_SKIP: "*-macosx_arm64"
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ keywords:
- Local solver
- C++
- Python
license: BSD-Source-Code
license: MIT
date-released: '2022-07-28'
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15...3.28)

project(fast_tsp VERSION "0.1.3")
project(fast_tsp VERSION "0.1.4")

if(SKBUILD)
# Scikit-Build does not add your site-packages to the search path
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Pip Actions Status][actions-pip-badge]][actions-pip-link]
[![PyPI - Version](https://img.shields.io/pypi/v/fast-tsp)][pypi]
[![GitHub issues](https://img.shields.io/github/issues/shmulvad/fast-tsp?style=flat-square)](https://github.com/shmulvad/fast-tsp/issues)
[![GitHub license](https://img.shields.io/badge/license-BSD-success?style=flat-square)][LICENSE]
[![GitHub license](https://img.shields.io/github/license/shmulvad/fast-tsp?style=flat-square)][LICENSE]


A library for computing near optimal solution to large instances of the TSP (Travelling Salesman Problem) fast using a local solver. The library is written in C++ and provides Python bindings.
Expand Down

0 comments on commit 67ca4bb

Please sign in to comment.