From 121d65249a2ee2c0f31eb5d40d14d336100bb862 Mon Sep 17 00:00:00 2001 From: Paddy Mullen Date: Tue, 29 Oct 2024 15:30:13 -0400 Subject: [PATCH] removing some more unused files --- test-environment-ipyw7.yaml | 24 -------------- test-environment-ipyw8.yaml | 24 -------------- tox.ini | 62 ------------------------------------- 3 files changed, 110 deletions(-) delete mode 100644 test-environment-ipyw7.yaml delete mode 100644 test-environment-ipyw8.yaml delete mode 100644 tox.ini diff --git a/test-environment-ipyw7.yaml b/test-environment-ipyw7.yaml deleted file mode 100644 index f2391ff5..00000000 --- a/test-environment-ipyw7.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: ipydatagrid-test-ipw7 -channels: - - conda-forge -dependencies: - - pip - - python - - nodejs=14 - - yarn - - ipywidgets >=7.6.0,<8 - - traitlets >=4.3.0 - - traittypes >=0.0.6 - - numpy >=1.10.4,<2.0.0 - - pandas >=1.0.0,<2.0.0 - - bqplot - - scipy - - jupyterlab - - jupyter-packaging - - pytest - - nbval - - pytest-cov - - selenium - - flake8 - - nose - - codespell diff --git a/test-environment-ipyw8.yaml b/test-environment-ipyw8.yaml deleted file mode 100644 index 3f002817..00000000 --- a/test-environment-ipyw8.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: ipydatagrid-test-ipw8 -channels: - - conda-forge -dependencies: - - pip - - python - - nodejs=14 - - yarn - - ipywidgets >=8.0.0,<9 - - traitlets >=4.3.0 - - traittypes >=0.0.6 - - numpy >=1.10.4,<2.0.0 - - pandas >=1.0.0,<2.0.0 - - bqplot - - scipy - - jupyterlab - - jupyter-packaging - - pytest - - nbval - - pytest-cov - - selenium - - flake8 - - nose - - codespell diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 47e86231..00000000 --- a/tox.ini +++ /dev/null @@ -1,62 +0,0 @@ -[tox] -envlist = - fix - py310 - py39 - py38 - py37 - py36 - pypy3 - docs - pkg_desc -isolated_build = true -skip_missing_interpreters = true -minversion = 3.7 - -[testenv] -extras = - test -commands = - pytest {tty:--color=yes} tests - pytest --nbval examples -package = wheel -wheel_build_env = .pkg - -[testenv:fix] -description = format the code base to adhere to our styles, and complain about what we cannot do automatically -passenv = - PROGRAMDATA -skip_install = true -deps = - pre-commit>=2 -commands = - pre-commit run --all-files --show-diff-on-failure - -[testenv:pkg_desc] -description = check that the long description is valid -skip_install = true -deps = - build[virtualenv]>=0.7 - twine>=3.7 -commands = - python -m build --sdist --wheel . -o {envtmpdir} - twine check {envtmpdir}/* - -[testenv:dev] -description = dev environment with all deps at {envdir} -usedevelop = true -extras = - dev - test -commands = - python -m pip list --format=columns - python -c "print(r'{envpython}')" - -[flake8] -max-complexity = 22 -max-line-length = 80 -extend-ignore = E203, W503 -noqa-require-code = true - -[pep8] -max-line-length = 80