Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-26 | Initial drop of Python 3.5 | Florian Bruhin | |
See #4800 | |||
2020-08-11 | Add Python 3.9 classifier | Florian Bruhin | |
See https://github.com/qutebrowser/qutebrowser/discussions/5658 | |||
2020-06-24 | Update PyPI classifiers | Florian Bruhin | |
2020-05-11 | Upgrade documented Python versions | Florian Bruhin | |
2020-01-04 | Adjust copyrights for 2020 | Florian Bruhin | |
2019-07-11 | Fix setup.py after __init__.py changes | Florian Bruhin | |
Fixes #4907 | |||
2019-02-22 | Update copyright for 2019 | Jay Kamat | |
2018-05-29 | setup.py: Set long_description_content_type | Florian Bruhin | |
Otherwise, Warehouse (new PyPI) refuses the upload... | |||
2018-02-10 | Add Python 3.7 compatibility to setup.py | Florian Bruhin | |
2017-11-15 | Set python_requires in setup.py | Florian Bruhin | |
2017-09-21 | Update metainfo in setup.py | Florian Bruhin | |
2017-09-21 | Move some data from setupcommon to setup.py | Florian Bruhin | |
We can't get rid of setupcommon entirely (it's needed by PyInstaller), but at least we can get the data back to setup.py. Fixes #2996 | |||
2017-09-19 | Start using attrs | Florian Bruhin | |
Closes #1073 | |||
2017-05-09 | Finally update copyrights... | Florian Bruhin | |
2016-02-10 | Check pep257 via flake8. | Florian Bruhin | |
We'll still keep the pydocstyle environment though until flake8-pep257 adds support for that: https://github.com/Robpol86/flake8-pep257/issues/6 | |||
2015-06-26 | Use exclude= instead of include= for find_packages. | Florian Bruhin | |
It seems the old setuptool version in Ubuntu Trusty doesn't have include=... | |||
2015-06-26 | Revert "Revert "Don't install scripts package."" | Florian Bruhin | |
This reverts commit 345d048f43cd92032b30cefc452e8e1314f91bc6. | |||
2015-06-26 | Revert "Don't install scripts package." | Florian Bruhin | |
This reverts commit f61aaa9053d12edb9d6c048ddbe8ab857c7ad109. | |||
2015-06-26 | Don't install scripts package. | Florian Bruhin | |
See #783. | |||
2015-02-16 | Add session support. | Florian Bruhin | |
Closes #12. See #499. See #11. This adds PyYAML as a new dependency. It adds the following new commands: :session-delete <name> Delete a session. :session-load <name> Load a session. :session-save [<name>] Save a session. :wq [<name>] Save open pages and quit. And the following new settings: general -> save-session: Whether to always save the open pages. | |||
2015-01-03 | Update copyright years | Florian Bruhin | |
2014-12-28 | Use Qt resources for the window icon. | Florian Bruhin | |
2014-12-28 | Only remove icon tree if necessary. | Florian Bruhin | |
2014-12-28 | Use a dirty hack to copy icon files into package. | Florian Bruhin | |
See #325. | |||
2014-12-28 | Set window icon. Closes #325. | Florian Bruhin | |
2014-12-04 | Remove extras_require from setup.py | Florian Bruhin | |
2014-11-24 | Get rid of ez_setup.py. | Florian Bruhin | |
This made life easier for systems without a package manager (Windows, I'm looking at you!), but for anything else it tried to bootstrap setuptools even though it was already installed (in a slightly older version) which lead to conflicting files when packaging. | |||
2014-09-22 | Add /usr/bin/env to shebangs | Florian Bruhin | |
2014-09-22 | Merge branch 'newcmd' | Florian Bruhin | |
Conflicts: .flake8 pkg/PKGBUILD.qutebrowser-git qutebrowser/browser/commands.py qutebrowser/browser/hints.py qutebrowser/config/configdata.py qutebrowser/network/qutescheme.py qutebrowser/test/config/test_configtypes.py qutebrowser/utils/utils.py | |||
2014-09-22 | Revert "Start patching setuptools commands" | Florian Bruhin | |
This reverts commit 42e8e800aa2c31d3f067d12e75e7eb39cee90e12. | |||
2014-09-22 | Start patching setuptools commands | Florian Bruhin | |
2014-09-15 | Add pygments as dependency. | Florian Bruhin | |
2014-09-12 | Remove explicit package_data from setup.py | Florian Bruhin | |
2014-08-28 | Add dependency on jinja2. | Florian Bruhin | |
2014-08-26 | Clean up imports | Florian Bruhin | |
2014-08-20 | Update setup.py. | Florian Bruhin | |
2014-07-31 | Adjust shebangs to call python3 | Florian Bruhin | |
2014-07-31 | Mark scripts as executable. | Florian Bruhin | |
2014-06-24 | Get rid of ipdb/IPython. | Florian Bruhin | |
This caused more problems than it's worth really, and it does some black magic I'm not comfortable with. | |||
2014-06-19 | Move extras_require to setup.py | Florian Bruhin | |
2014-06-19 | Add vim modelines to all files. | Florian Bruhin | |
2014-06-04 | Move init to own file qutebrowser.py | Florian Bruhin | |
2014-06-04 | Add a main function to app.py | Florian Bruhin | |
2014-05-15 | Try to preserve git commit id with setup.py/freeze.py | Florian Bruhin | |
2014-05-15 | Rename setupdata to setupcommon | Florian Bruhin | |
2014-05-13 | Add freeze.py | Florian Bruhin | |
2014-05-08 | Switch from appdirs to QStandardPaths | Florian Bruhin | |
2014-05-06 | Depend on appdirs instead of bundling | Florian Bruhin | |
2014-05-05 | Move ez_setup.py to scripts | Florian Bruhin | |
2014-05-02 | Fix encoding issues on windows. | Florian Bruhin | |
locale.getpreferredencoding(False) returns cp1252 on Windows, which is unable to parse our nice unicode arrows. Therefore, we always need to specify the encoding when using open(). Also we exclude configdata.py from pep257 on Windows because it doesn't detect the encoding correctly... Bug is submitted: https://github.com/GreenSteam/pep257/issues/70 |