Skip to content

Commit

Permalink
Merge branch 'main' into feat/improve-infer-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
noklam authored Jul 31, 2023
2 parents 6dc82c5 + 7bda9bc commit b743d06
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
19 changes: 19 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
image: gitpod/workspace-python-3.10

tasks:
- init: python -m pip install -e . -r test_requirements.txt

github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
addComment: false
# add a "Review in Gitpod" button to pull requests (defaults to false)
addBadge: true
3 changes: 0 additions & 3 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,3 @@ help:
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

lint:

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ def _parse_requirements(path, encoding="utf-8"):
"sphinx-markdown-tables~=0.0.15",
"sphinx-click>=3.1,<4.5",
"sphinx_copybutton~=0.5.0",
"myst-parser>=0.17.2,<1.1.0",
"myst-parser>=0.17.2,<2.1.0",
],
"test": [
"pytest>=7.0.0, <8.0.0",
"pytest-cov>=4.0.0, <5.0.0",
"flake8==6.0.0", # ensure consistency with pre-commit
"black==23.3.0", # pin black version because it is not compatible with a pip range (because of non semver version number)
"black==23.7.0", # pin black version because it is not compatible with a pip range (because of non semver version number)
"isort==5.12.0", # ensure consistency with pre-commit
],
"dev": [
Expand Down
1 change: 1 addition & 0 deletions test_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cookiecutter

0 comments on commit b743d06

Please sign in to comment.