Skip to content

Commit e970b94

Browse files
committed
Fix project URLs in CMakeLists.txt and pyproject.toml
1 parent 71be3c5 commit e970b94

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# Apache License Version 2.0 http://www.apache.org/licenses/.
44
#
55
# This is a modified version of the CMakeFile
6-
# for the project https://github.com/lemire/FastPFor
7-
# This file can be used to
6+
# for the project https://github.com/lemire/FastPFor
7+
# This file can be used to
88
# 1) Build a library separately. Then, this library
99
# will be re-used by the Python build process
1010
# 2) Build and run unit and performance tests.
@@ -21,7 +21,7 @@ include(AppendCompilerFlags)
2121

2222

2323
project(PyFastPFor CXX C)
24-
set(PROJECT_URL "https://github.com/searchivarius/PyFastPFOR")
24+
set(PROJECT_URL "https://github.com/fast-pack/PyFastPFOR")
2525
set(PROJECT_DESCRIPTION "Python bindings for the FastPFOR C++ library: Fast integer compression")
2626
include(DetectCPUFeatures)
2727
#

python_bindings/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ classifiers = [
3232
dependencies = ["numpy"]
3333

3434
[project.urls]
35-
Homepage = "https://github.com/searchivarius/PyFastPFor"
36-
Repository = "https://github.com/searchivarius/PyFastPFor"
37-
Issues = "https://github.com/searchivarius/PyFastPFor/issues"
35+
Homepage = "https://github.com/fast-pack/PyFastPFor"
36+
Repository = "https://github.com/fast-pack/PyFastPFor"
37+
Issues = "https://github.com/fast-pack/PyFastPFor/issues"
3838

3939
[tool.setuptools]
4040
# pyfastpfor is a single C++ extension module with no pure-Python packages, so

0 commit comments

Comments
 (0)