Skip to content

Commit

Permalink
Merge branch 'master' into colorchooser-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Oct 26, 2021
2 parents d44c3be + 9145d17 commit ef832b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
environment:
matrix:
- PYTHON: "C:\\PYTHON34"
- PYTHON: "C:\\PYTHON35"
- PYTHON: "C:\\PYTHON36"
- PYTHON: "C:\\PYTHON37"
- PYTHON: "C:\\PYTHON38"
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
required: sudo
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.11.0'
release = '0.12.0'


# -- Example Generation ------------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ def read(file_name: str):

setup(
name="ttkwidgets",
packages=["ttkwidgets", "ttkwidgets.frames", "ttkwidgets.font", "ttkwidgets.autocomplete", "ttkwidgets.color"],
packages=["ttkwidgets", "ttkwidgets.frames", "ttkwidgets.font", "ttkwidgets.autocomplete", "ttkwidgets.color", "ttkwidgets.validated_entries"],
py_modules=["ttkwidgets"],
package_data={"ttkwidgets": ["assets/*"]},
version="0.11.0",
version="0.12.1",
description=" A collection of widgets for Tkinter's ttk extensions by various authors ",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="The ttkwidgets authors",
url="https://www.github.com/RedFantom/ttkwidgets",
download_url="https://www.github.com/RedFantom/ttkwidgets/releases",
license="AGPL",
classifiers=["Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
python_requires=">=3.6",
install_requires=["pillow"]
)

0 comments on commit ef832b2

Please sign in to comment.