-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into types
- Loading branch information
Showing
11 changed files
with
82 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<!-- | ||
Thanks for opening a feature request! | ||
--> | ||
|
||
**Description**: Description of your feature request | ||
|
||
**Example use cases**: List some possible use cases for this feature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Security Issues | ||
url: mailto:[email protected] | ||
about: Please report security vulnerabilities here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
### Pull Request check-list | ||
|
||
_Please make sure to review and check all of these items:_ | ||
<!-- Please make sure to review and check all of these items: --> | ||
|
||
- [ ] Do tests and lints pass with this change? | ||
- [ ] Do the CI tests pass with this change (enable it first in your forked repo and wait for the github action build to finish)? | ||
- [ ] Is the new or changed code fully tested? | ||
- [ ] Is a documentation update included (if this change modifies existing APIs, or introduces new ones)? | ||
- [ ] Is there an example added to the examples folder (if applicable)? | ||
|
||
_NOTE: these things are not required to open a PR and can be done | ||
afterwards / while the PR is open._ | ||
<!-- NOTE: these things are not required to open a PR and can be done | ||
afterwards / while the PR is open. --> | ||
|
||
### Description of change | ||
|
||
_Please provide a description of the change here._ | ||
<!-- Please provide a description of the change here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
Please use | ||
python setup.py install | ||
|
||
and report errors to Salvatore Mesoraca ([email protected]) | ||
and report errors to via https://github.com/valkey-io/valkey-py/issues/new | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
async-timeout>=4.0.3 | ||
async-timeout>=4.0.3; python_version<"3.11" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
long_description_content_type="text/markdown", | ||
keywords=["Valkey", "key-value store", "database"], | ||
license="MIT", | ||
version="6.0.0", | ||
version="6.0.1", | ||
packages=find_packages( | ||
include=[ | ||
"valkey", | ||
|
@@ -36,7 +36,7 @@ | |
author_email="[email protected]", | ||
python_requires=">=3.8", | ||
install_requires=[ | ||
'async-timeout>=4.0.3; python_version<="3.12"', | ||
'async-timeout>=4.0.3; python_version<"3.11"', | ||
], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters