Skip to content

Commit

Permalink
1.0.3 - fixed install for Python >=3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Gaultney committed May 27, 2020
1 parent d6d5d25 commit e07a044
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.0.3

Fixed install_requires for Python > 3.6

### 1.0.2

- Fixed return value for `put_unless_exists`.
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
with open("README.md") as fh:
long_description = fh.read()


setup(
name=PKG_NAME,
version=about["__version__"],
Expand All @@ -19,6 +20,10 @@
packages=find_packages(),
package_data={"": ["py.typed"]},
python_requires=">=3.6",
install_requires=["boto3 >= 1.9", "typing-extensions >= 3.7", "dataclasses"],
install_requires=[
"boto3 >= 1.9",
"typing-extensions >= 3.7",
"dataclasses;python_version<'3.7'",
],
# it is important to keep these install_requires basically in sync with the Pipfile as well.
)
2 changes: 1 addition & 1 deletion xoto3/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""xoto3"""
__version__ = "1.0.2"
__version__ = "1.0.3"
__author__ = "Peter Gaultney"
__author_email__ = "[email protected]"

0 comments on commit e07a044

Please sign in to comment.