Skip to content

Commit

Permalink
chore: updated to 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
frolvanya committed May 29, 2024
1 parent 653bafc commit c7fbb9a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="near-lake-framework",
version="0.0.8",
version="0.0.9",
author="Ivan Frolov",
author_email="frolvanya@gmail.com",
description="Python Library to connect to the NEAR Lake S3 and stream the data",
Expand All @@ -27,9 +27,13 @@
install_requires=[
"asyncio>=3.4.3",
"dataclasses>=0.6",
"dataclasses-json>=0.5.7",
"aiobotocore>=2.3.0",
"dataclasses-json>=0.6.6",
"botocore>=1.34.70",
"aiobotocore>=2.13.0",
"requests>=2.32.2",
"types-botocore>=1.0.2",
"types-aiobotocore>=2.13.0",
"types-requests>=2.32.0.20240523",
],
package_data={"near_lake_framework": ["py.typed"]},
)

4 comments on commit c7fbb9a

@bh2smith
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not just merge the PR instead of adding all this stuff manually?

@frolvanya
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because I didn't see that you added another PR

@bh2smith
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AHh - I was referring to this: #14

But it just doesn't appear merged because it wasn't "squashed".

@bh2smith
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a much easier way to publish new versions (automatically when you tag a release).

Its a bit involved to setup, but amazing once it is.

https://github.com/duneanalytics/dune-client/blob/main/.github/workflows/py-publish.yaml

Please sign in to comment.