├── .circleci ├── config.yml └── fetch_doc_logs.py ├── .coveragerc ├── .flake8 ├── .github └── workflows │ ├── circleci.yml │ ├── release.yml │ ├── reviewdog.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.rst ├── SECURITY.md ├── appveyor.yml ├── cycler ├── __init__.py └── py.typed ├── doc ├── Makefile ├── _templates │ └── autosummary │ │ └── class.rst ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── pyproject.toml └── test_cycler.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/fetch_doc_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.circleci/fetch_doc_logs.py -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source=cycler 3 | branch=True 4 | [report] 5 | omit = 6 | *test* 7 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/circleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.github/workflows/circleci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cycler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/cycler/__init__.py -------------------------------------------------------------------------------- /cycler/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/doc/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_cycler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matplotlib/cycler/HEAD/test_cycler.py --------------------------------------------------------------------------------