From 4c51bee4642a4f6b4324b695919e823301386921 Mon Sep 17 00:00:00 2001 From: B1ueber2y Date: Wed, 8 Jan 2025 18:14:15 +0100 Subject: [PATCH] Update supported python versions in setup.py. Add src/hloc into gitignore --- .gitignore | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index da7295b0..5a8e63f6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /dist/ cmake-build-* *.egg-info/ +src/hloc *.npy *.png diff --git a/setup.py b/setup.py index 0093f3f2..6cf3991f 100644 --- a/setup.py +++ b/setup.py @@ -78,9 +78,9 @@ def build_extension(self, ext): cmdclass={"build_ext": CMakeBuild}, zip_safe=False, classifiers=[ - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: OS Independent", ], )