Skip to content

Commit

Permalink
Merge pull request #5 from aerocyber/dev
Browse files Browse the repository at this point in the history
Reduce Python requirement
  • Loading branch information
aerocyber authored May 8, 2023
2 parents 83a71b0 + 77a5f5b commit 4180364
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
setup(
name="ospyata",
license="MIT License",
version="3.1.3",
version="3.1.4",
description="Python library for the open source bookmark app Osmata.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -36,7 +36,7 @@
keywords="osmata, development, osmata-bindings, osmata-python-bindings, bookmarks, ospyata",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.11, <4",
python_requires=">=3.09, <4",
install_requires=[], # Thanks to django's regex, validators is no longer required.
project_urls={
"Bug Reports": "https://github.com/aerocyber/ospyata/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/ospyata/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT

__version__ = '3.1.3'
__version__ = '3.1.4'
__spec_version__ = '3.0.0'

0 comments on commit 4180364

Please sign in to comment.