-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update skel and replace py35 with py39 in test grid.
- Loading branch information
Showing
15 changed files
with
129 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
# Generated by cookiepatcher, a small shim around cookiecutter (pip install cookiepatcher) | ||
|
||
cookiecutter: | ||
_extensions: | ||
- jinja2_time.TimeExtension | ||
_template: cookiecutter-pylibrary | ||
default_context: | ||
allow_tests_inside_package: no | ||
appveyor: yes | ||
c_extension_function: '-' | ||
|
@@ -23,10 +20,11 @@ cookiecutter: | |
distribution_name: hunter | ||
email: [email protected] | ||
full_name: Ionel Cristian Mărieș | ||
landscape: no | ||
legacy_python: yes | ||
license: BSD 2-Clause License | ||
linter: flake8 | ||
package_name: hunter | ||
pre_commit: yes | ||
project_name: Hunter | ||
project_short_description: Hunter is a flexible code tracing toolkit, not for measuring coverage, but for debugging, logging, inspection and other nefarious purposes. It has a simple Python API and a convenient terminal API (see `Environment variable activation <env-var-activation_>`_). | ||
pypi_badge: yes | ||
|
@@ -49,7 +47,7 @@ cookiecutter: | |
test_runner: pytest | ||
travis: yes | ||
travis_osx: no | ||
version: 3.0.2 | ||
version: 3.3.1 | ||
website: https://blog.ionelmc.ro | ||
year_from: '2015' | ||
year_to: '2019' | ||
year_to: '2021' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
# see http://editorconfig.org | ||
# see https://editorconfig.org/ | ||
root = true | ||
|
||
[*] | ||
# Use Unix-style newlines for most files (except Windows files, see below). | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
insert_final_newline = true | ||
indent_size = 4 | ||
charset = utf-8 | ||
|
||
[*.{bat,cmd,ps1}] | ||
end_of_line = crlf | ||
|
||
[*.yml] | ||
[*.{yml,yaml}] | ||
indent_size = 2 | ||
|
||
[*.tsv] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
version: 2 | ||
sphinx: | ||
configuration: docs/conf.py | ||
formats: all | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
- method: pip | ||
path: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,18 +37,19 @@ Development | |
|
||
To set up `python-hunter` for local development: | ||
|
||
1. `Fork python-hunter <https://github.com/ionelmc/python-hunter/fork>`_. | ||
2. Clone your fork locally (replace ``USERNAME`` with your GitHub username):: | ||
1. Fork `python-hunter <https://github.com/ionelmc/python-hunter>`_ | ||
(look for the "Fork" button). | ||
2. Clone your fork locally:: | ||
|
||
git clone [email protected]:USERNAME/python-hunter.git | ||
git clone [email protected]:YOURGITHUBNAME/python-hunter.git | ||
|
||
3. Create a branch for local development:: | ||
|
||
git checkout -b name-of-your-bugfix-or-feature | ||
|
||
Now you can make your changes locally. | ||
|
||
4. When you're done making changes, run all the checks, doc builder and spell checker with `tox <https://tox.readthedocs.io/en/latest/install.html>`_ one command:: | ||
4. When you're done making changes run all the checks and docs builder with `tox <https://tox.readthedocs.io/en/latest/install.html>`_ one command:: | ||
|
||
tox | ||
|
||
|
@@ -84,6 +85,6 @@ To run a subset of tests:: | |
|
||
tox -e envname -- pytest -k test_myfeature | ||
|
||
To run all the test environments in *parallel* (you need to ``pip install detox``):: | ||
To run all the test environments in *parallel*:: | ||
|
||
detox | ||
tox -p auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
virtualenv>=16.6.0 | ||
pip>=19.1.1 | ||
setuptools>=18.0.1 | ||
six>=1.14.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
version: '{branch}-{build}' | ||
build: off | ||
image: Visual Studio 2019 | ||
environment: | ||
global: | ||
TWINE_USERNAME: ionel | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.