Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ci test #19

Merged
merged 20 commits into from
Dec 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
bcaadfe
Merge branch 'bugfix/remove-flakehell-doc' into develop
rachmadaniHaryono Dec 7, 2021
34547c1
Merge remote-tracking branch 'upstream/master' into develop
rachmadaniHaryono Dec 7, 2021
2869c75
chore: upgrade black to latest version
rachmadaniHaryono Dec 10, 2021
96be2b1
chore: python version requirement
rachmadaniHaryono Dec 10, 2021
4ae6d7c
chore: check bom
rachmadaniHaryono Dec 10, 2021
128d747
Revert "chore: check bom"
rachmadaniHaryono Dec 10, 2021
727428d
chore: upgrade mkdocs
rachmadaniHaryono Dec 10, 2021
7e02574
Revert "chore: upgrade mkdocs"
rachmadaniHaryono Dec 10, 2021
2685440
chore: add byte order marker
rachmadaniHaryono Dec 10, 2021
207146c
Revert "chore: add byte order marker"
rachmadaniHaryono Dec 10, 2021
7d8ee74
chore: change markdown_extensions toc based on example
rachmadaniHaryono Dec 10, 2021
b225868
Revert "chore: change markdown_extensions toc based on example"
rachmadaniHaryono Dec 10, 2021
d4ebf3c
ci: skip python 3.6 and 3.7 on windows latest
rachmadaniHaryono Dec 10, 2021
90f4699
chore: change markdown_extensions toc based on example
rachmadaniHaryono Dec 10, 2021
727f403
Update project/pyproject.toml.jinja
rachmadaniHaryono Dec 14, 2021
42e9cbf
fix(pyproject): restrict python to 3 only
rachmadaniHaryono Dec 14, 2021
6597fe8
build(mkdocs): use default separator
rachmadaniHaryono Dec 14, 2021
97fe64d
refactor: Remove dependencies upper bounds
pawamoy Dec 15, 2021
24fe275
Merge branch 'master' into bugfix/ci-test
pawamoy Dec 15, 2021
03228fc
Update project/mkdocs.yml.jinja
rachmadaniHaryono Dec 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.6,3.7,3.8,3.9]
exclude:
- os: windows-latest
python-version: 3.6
- os: windows-latest
python-version: 3.7

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os != 'ubuntu-latest' }}
Expand Down
2 changes: 1 addition & 1 deletion project/mkdocs.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ markdown_extensions:
- pymdownx.tabbed
- pymdownx.tasklist
- toc:
permalink: "¤"
permalink: true

plugins:
- search
Expand Down
71 changes: 36 additions & 35 deletions project/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -15,50 +15,51 @@ keywords = []
packages = [ { include = "[[ python_package_import_name ]]", from = "src" } ]

[tool.poetry.dependencies]
python = "^3.6"
python = ">=3.6.2,<4.0"

[tool.poetry.dev-dependencies]
# formatting, quality, tests
autoflake = "^1.4"
black = "^20.8b1"
isort = "^5.7.0"
mypy = "^0.812"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pytest-randomly = "^3.5.0"
pytest-sugar = "^0.9.4"
pytest-xdist = "^2.2.0"
autoflake = ">=1.4"
black = ">=21.12b0"
isort = ">=5.7.0"
mypy = ">=0.812"
pytest = ">=6.2.2"
pytest-cov = ">=2.11.1"
pytest-randomly = ">=3.5.0"
pytest-sugar = ">=0.9.4"
pytest-xdist = ">=2.2.0"
types-toml = ">=0.10.1"

# tasks
duty = "^0.6.0"
git-changelog = "^0.4.2"
httpx = "^0.16.1"
jinja2-cli = "^0.7.0"
toml = "^0.10.2"
duty = ">=0.6.0"
git-changelog = ">=0.5.0"
httpx = ">=0.16.1"
jinja2-cli = ">=0.7.0"
toml = ">=0.10.2"

# flake8 plugins
darglint = "^1.5.8"
flake8 = "^3.7.0"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.1"
flake8-bugbear = "^20.11.1"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.3.1"
flake8-docstrings = "^1.5.0"
flake8-pytest-style = "^1.3.0"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4.2.1"
flake8-variables-names = "^0.0.4"
pep8-naming = "^0.11.1"
pydocstyle = "^6.1.1"
wps-light = "^0.15.2"
darglint = ">=1.5.8"
flake8 = ">=3.7.0"
flake8-bandit = ">=2.1.2"
flake8-black = ">=0.2.1"
flake8-bugbear = ">=20.11.1"
flake8-builtins = ">=1.5.3"
flake8-comprehensions = ">=3.3.1"
flake8-docstrings = ">=1.5.0"
flake8-pytest-style = ">=1.3.0"
flake8-string-format = ">=0.3.0"
flake8-tidy-imports = ">=4.2.1"
flake8-variables-names = ">=0.0.4"
pep8-naming = ">=0.11.1"
pydocstyle = ">=6.1.1"
wps-light = ">=0.15.2"

# docs
mkdocs = "^1.1.2"
mkdocs-coverage = "^0.2.1"
mkdocs-macros-plugin = "^0.5.0"
mkdocs-material = "^6.2.7"
mkdocstrings = "^0.15.0"
mkdocs = ">=1.2.2"
mkdocs-coverage = ">=0.2.1"
mkdocs-macros-plugin = ">=0.5.0"
mkdocs-material = ">=6.2.7"
mkdocstrings = ">=0.16.2"

[tool.poetry.scripts]
[[ python_package_command_line_name ]] = "[[ python_package_import_name ]].cli:main"
Expand Down