Levi Cameron

Results 19 issues of Levi Cameron

The README suggests to use `less@^2.7.3`. This should no longer be necessary since the [ant-design incompatibility](https://github.com/ant-design/ant-design/issues/7927) with less 3.x has [been fixed](https://github.com/ant-design/ant-design/pull/13242) since Dec 13 2018 (antd 3.11.3)

This is related to #288 - but it doesn't really matter whether you use `graph` or `children`, `GitGraph` does not react to property changes. Demo: https://codesandbox.io/s/gitgraph-react-render-ignoring-dependency-changes-55ko6 If you remove (or...

:bug: Bug

Addresses #24 - Now handles python 3.6 DirEntry and pathlib.Path - AbstractPath probably doesn't need `__fspath__()` since it already extends `str` and anything handling `os.PathLike` probably has strings as a...

Python 3.6 introduced PEP 519 Short summary in python 3.6 here: https://docs.python.org/3/whatsnew/3.6.html#pep-519-adding-a-file-system-path-protocol ``` import unipath import pathlib print(unipath.Path('a', 'b', pathlib.Path('c', 'd'))) ``` Presently the above code would fail with `TypeError:...

My use case: - I use multiple versions of postgres and switch between them depending on what project I am currently working on. - I have many projects and cannot...

* Bonobo 0.6.2 * Demonstration code: ```python #!/usr/bin/env python3 import bonobo class MyTransform(bonobo.config.Configurable): option1 = bonobo.config.Method(positional=True, required=True) option2 = bonobo.config.Option(None, positional=True, default=100) def __call__(self, *values): pass class ChildTransform(MyTransform): # I...

bug
enhancement
easy
dx
size: 5
backlog

If you use multi-table inheritance then `validate_partial_unique()` doesn't work if `Meta` is overridden by the child; any uniqueness constraints on the parent model will be ignored even though they are...

The documentation at https://github.com/senchalabs/jQTouch/wiki/Initialization%20Options talks about the animation selectors. Code for this existed in the pre-coffescript version (eg v0.97.0rc7 jqtouch.js line 497). Code to handle this does not exist in...

If you want to do something other than navigate to another page, your custom tap event handler in an actionsheet button will fire twice: https://gist.github.com/levic/5597041 The custom tap event handler...

Every underscore/camelize cycle drops an underscore in the case of consecutive underscores. Consider the following snippet: ```python import inflection x = 'a____b_c' for i in range(4): x = inflection.camelize(x) print(x)...

feature-request