From a3d5b7e3ec11a3b525d2d8b28451b21355270685 Mon Sep 17 00:00:00 2001 From: Bashir ABDEL WAHED Date: Sun, 16 Mar 2025 16:06:08 +0000 Subject: [PATCH 1/3] :fire: remove appveyor --- appveyor.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 1d8c2f2..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,30 +0,0 @@ -environment: - matrix: - - TOXENV: "3.9" - TOX_APPVEYOR_X64: 0 - - - TOXENV: "3.7" - TOX_APPVEYOR_X64: 0 - - - TOXENV: "3.8" - TOX_APPVEYOR_X64: 0 - - - TOXENV: "3.9" - TOX_APPVEYOR_X64: 1 - - - TOXENV: "3.7" - TOX_APPVEYOR_X64: 1 - - - TOXENV: "3.8" - TOX_APPVEYOR_X64: 1 - -build: off - -install: - - "py -3.8 -m pip install -U pip setuptools wheel tox tox-appveyor" - -test_script: - - "py -3.8 -m tox" - -cache: -- '%LOCALAPPDATA%\pip\Cache' From a8961dd6a52379533d2db729be3e5c61d45ecd49 Mon Sep 17 00:00:00 2001 From: Bashir ABDEL WAHED Date: Sun, 16 Mar 2025 16:18:38 +0000 Subject: [PATCH 2/3] :fire: rm .travis.yml because no longer used --- .travis.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 21655fb..0000000 --- a/.travis.yml +++ /dev/null @@ -1,45 +0,0 @@ -dist: bionic -language: python -cache: pip - -stages: - - lint - - test - -env: - global: - PYTHONUNBUFFERED=yes - -matrix: - include: - - python: 3.6 - env: TOXENV=3.6 - - python: 3.7 - env: TOXENV=3.7 - - python: 3.8 - env: TOXENV=3.8 - - python: pypy3.6-7.3.1 - env: TOXENV=pypy3 - - python: 3.8 - env: TOXENV=flake8 - stage: lint - - python: 3.8 - env: TOXENV=apicheck - stage: lint - - python: 3.8 - env: TOXENV=pydocstyle - stage: lint - -install: - - pip install -U pip setuptools wheel | cat - - pip install -U tox | cat -script: tox -v -- -v -after_success: - - .tox/$TRAVIS_PYTHON_VERSION/bin/coverage xml - - .tox/$TRAVIS_PYTHON_VERSION/bin/codecov -e TOXENV -notifications: - irc: - channels: - - "chat.freenode.net#celery" - on_success: change - on_failure: change From ad44c3965392328d2f0a81e13bf16fac9e021ece Mon Sep 17 00:00:00 2001 From: Bashir ABDEL WAHED Date: Sun, 16 Mar 2025 16:19:28 +0000 Subject: [PATCH 3/3] :fire: rm .editorconfig because shouldn't have been commited to git --- .editorconfig | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 22fb1f9..0000000 --- a/.editorconfig +++ /dev/null @@ -1,14 +0,0 @@ -# http://editorconfig.org - -root = true - -[*] -indent_style = space -indent_size = 4 -trim_trailing_whitespace = true -insert_final_newline = true -charset = utf-8 -end_of_line = lf - -[Makefile] -indent_style = tab