Skip to content

Commit b036f34

Browse files
committed
Updated minimum python version. Disabled python 3.6 builds
1 parent 6262b89 commit b036f34

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
path: dist/*.tar.gz
5656

5757
upload_pypi:
58-
needs: [build_wheels, build_sdist]
58+
needs: [build_locally, build_wheels, build_sdist]
5959
runs-on: ubuntu-latest
6060
environment: pypi
6161
permissions:

pyproject.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=42", "wheel", "Cython"]
2+
requires = ["setuptools", "wheel", "Cython"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -22,15 +22,18 @@ dependencies = [
2222
"numpy>=1.20.1, <2.0.0",
2323
"plotly>=4.14.3"
2424
]
25-
requires-python = ">=3.6"
25+
requires-python = ">=3.7"
2626

2727
[project.optional-dependencies]
2828
dev = ["coverage", "pandas", "scikit-learn"]
2929

30-
[tool.setuptools.package-data]
31-
"tdamapper.utils" = ["_metrics.c", "_metrics.pyx"]
32-
3330
[project.urls]
3431
Homepage = "https://github.com/lucasimi/tda-mapper-python"
3532
Documentation = "https://tda-mapper.readthedocs.io"
3633
Issues = "https://github.com/lucasimi/tda-mapper-python/issues"
34+
35+
[tool.setuptools.package-data]
36+
"tdamapper.utils" = ["_metrics.c", "_metrics.pyx"]
37+
38+
[tool.cibuildwheel]
39+
skip = "cp36-*"

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,5 @@
1313
]
1414

1515
setup(
16-
name='tda-mapper',
17-
version='0.7.0',
1816
ext_modules=cythonize(ext_modules),
1917
)

0 commit comments

Comments
 (0)