• Home
  • Raw
  • Download

Lines Matching +full:create +full:- +full:issue +full:- +full:on +full:- +full:failure

3 This document outlines the ways to contribute to `python-dateutil`. This is a fairly small, low-tra…
8 …ution - it's important to get feedback about how the library is failing, and there's no better way…
10 …example - a small, self-contained script that can reproduce the behavior is the best way to get yo…
12 …de operating system, `python` version and `dateutil` version. Instructions on getting your version…
13 - `dateutil`: `python -c 'import dateutil; print(dateutil.__version__)'`
14 - `Python`: `python --version`
16 3. A description of the problem - what *is* happening and what *should* happen.
18 While pull requests fixing bugs are accepted, they are *not* required - the bug report in itself is…
22 If you would like to see a new feature in `dateutil`, it is probably best to start an issue for dis…
26- improvements to documentation, bug fixes, feature implementations, fixes to the build system, e…
28 …ests* - please write one or more tests to cover the behavior you intend your patch to improve. Ide…
33 - `feature`: A new feature, (e.g. a new function, method, attribute, etc)
34 - `bugfix`: A fix to a bug
35 - `doc`: A change to the documentation
36 - `deprecation`: Used if deprecating a feature or dropping support for a Python version.
37 - `misc`: A change that has no interesting effect for end users, such as fixes to the test suite or…
39 PRs that include a feature or bugfix *and* a deprecation should create a separate entry for the dep…
43 > {description of changes}. Reported by @{reporter} (gh issue #{issue\_no}). Fixed by @{patch submi…
49 Fixed issue where the tz.tzstr constructor would erroneously succeed if passed
50 an invalid value for tzstr. Reported by @pganssle (gh issue #259). Fixed by
54 …Reported and fixed by @{patch submitter}". It is not necessary to create a github issue just for t…
58 …cense - the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0) and the [3-Clause BS…
60 All contributions before December 1, 2017 except those explicitly relicensed, are only under the 3-
70 python -m virtualenv .venv # Create virtual environment in .venv directory
74 Alternatively you can create a [conda environment](https://conda.io/docs/user-guide/tasks/manage-en…
77 conda create -n dateutil # Create a conda environment
78 # conda create -n dateutil python=3.6 # Or specify a version
85 pip install -e .
91 pip install -r requirements-dev.txt
96 …of Python installed on your system. To limit the number of tests, run a specific subset of environ…
99 tox -e py27,py36
102 You can also pass arguments to `pytest` through `tox` by placing them after `--`:
105 tox -e py36 -- -m tzstr
108 This will pass the `-m tzstr` parameter to `pytest`, running only the tests with the `tzstr` mark.
110 The tests can also be run directly by running `pytest` or `python -m pytest` in the root directory.…
112 All GitHub pull requests are automatically tested using [Travis](https://travis-ci.org/dateutil/dat…