From 6dc96288d1d539238a2cd6af20f331ba59a43972 Mon Sep 17 00:00:00 2001 From: Tim Bielawa Date: Sun, 5 Feb 2023 15:54:53 -0600 Subject: [PATCH 1/2] No more travis --- .travis.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 3fe594a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -# github action trigger -language: python -notifications: - email: false -branches: - only: - - master - - 2023-01-26-no-more-py2 -after_success: - - coveralls -matrix: - include: - - python: "3.6" - env: CI=ci - - python: "3.7" - env: CI=ci - - python: "3.7" - env: CI=ci - - python: "3.8" - env: CI=ci - - python: "3.9" - env: CI=ci -script: make $CI -install: "" From d059abfa3df102f26aa47498f229fe8f8beeee94 Mon Sep 17 00:00:00 2001 From: Tyler MacDonald Date: Sat, 31 Aug 2024 21:49:58 -0400 Subject: [PATCH 2/2] fix install of integration packages These weren't getting installed, making part of the package unusable. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 11e5ed1..6701f0f 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ url='https://github.com/tbielawa/bitmath', license='MIT', package_dir={'bitmath': 'bitmath'}, - packages=['bitmath'], + packages=['bitmath', 'bitmath/integrations'], classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Console',