| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Removed the "python setup.py test" feature in favor of a straight run of
"tox". Per Pypa / pytest developers, "setup.py" commands are in general
headed towards deprecation in favor of tox. The tox.ini script has been
updated such that running "tox" with no arguments will perform a single run
of the test suite against the default installed Python interpreter.
.. seealso::
https://github.com/pypa/setuptools/issues/1684
https://github.com/pytest-dev/pytest/issues/5534
Fixes: #303
Change-Id: I345fd46f8911a71c039adf2d51937175142db793
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Mako 1.1 now supports Python versions:
* 2.7
* 3.4 and higher
This includes that setup.py no longer includes any conditionals, allowing
for a pure Python wheel build, however this is not necessarily part of the
Pypi release process as of yet. The test suite also raises for Python
deprecation warnings.
Fixes: #249
Replaced usage of ``inspect.getfullargspec()`` with the vendored version
used by SQLAlchemy, Alembic to avoid future deprecation warnings. Also
cleans up an additional version of the same function that's apparently
been floating around for some time.
Fixes: #295
Change-Id: I98274c16b6022289d1890f4daf532bab323ab112
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Replaced usage of time.clock() on windows as well as time.time() elsewhere
for microsecond timestamps with timeit.default_timer(), as time.clock() is
being removed in Python 3.8. Pull request courtesy Christoph Reiter.
Fixes: #301
Closes: #302
Pull-request: https://github.com/sqlalchemy/mako/pull/302
Pull-request-sha: a706e952727337702692fd1d8369d259e1600d6e
Change-Id: I24e2cd3d2c02323a6fa2b063e86cabe555df2036
|
| |
|
|
|
|
|
| |
- fix MANIFEST to remove old names, add tox.ini
- reformat .gitignore
Change-Id: I450672f92ebfb43a023df502de795f24ad809884
|
| |
|
|
| |
Change-Id: Ia047c7052a6d242c2cf1c7a83981f1e38ea4d928
|
| |
|
|
|
|
|
|
| |
Python 3.8 seems to require this be present for expression
generation to succeed.
Fixes: #287
Change-Id: I4a3ac22c74e3c96f5f15d349fc8fe2523d6e7def
|
| |
|
|
| |
Change-Id: I151a2351a7fadffd99c843e70c1504135a2c56c6
|
| | |
|
| |
|
|
|
| |
- upgrade tox file to use py35, coverage, etc.
- add flake8 rules
|
| | |
|
| |
|
|
|
| |
* add all deps to tox
* ignore test products
|
| | |
|
| |
|