-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update python version and poetry installation path #12
Conversation
.github/workflows/tests.yml
Outdated
|
||
- name: Set up cache | ||
uses: actions/cache@v1 | ||
uses: actions/cache@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need for separate cache
action, example:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
pyproject.toml
Outdated
toolz = "^0.10.0" | ||
funcy = "^1.14" | ||
docker = "^4.2.0" | ||
python = "^3.10.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally libraries are trying to maintain compatibility with older python versions. In this case I'm not sure there are much clients to support.
pyproject.toml
Outdated
|
||
[tool.poetry] | ||
name = "viz-python-lib" | ||
version = "0.1.0" | ||
description = "python library for VIZ blockchain" | ||
version = "0.2.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to bump to 1.0.0
as python version dep is increased, and maintain semantic versioning further.
No description provided.