Skip to content

Commit

Permalink
Merge pull request #295 from Apricot-S/develop
Browse files Browse the repository at this point in the history
v0.0.6
  • Loading branch information
Apricot-S authored Oct 10, 2024
2 parents db14dde + 496b33c commit aed0841
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -263,4 +263,7 @@ $RECYCLE.BIN/
requirements.lock
requirements-dev.lock

# uv
uv.lock

# End of https://www.toptal.com/developers/gitignore/api/python,venv,windows,macos,linux
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This is fork of **[Cryolite's majsoul-rpa](https://github.com/Cryolite/majsoul-r

![remote](./docs/remote.png)

## Install
## Installation

```sh
majsoulrpa$ pip install .
Expand Down
20 changes: 14 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "majsoulrpa"
version = "0.0.5"
version = "0.0.6"
description = "A Robotic Process Automation (RPA) framework for Mahjong Soul (雀魂)"
authors = [
{ name = "Apricot S." }
Expand All @@ -18,7 +18,7 @@ classifiers = [
]
dependencies = [
"imapclient>=3.0.1,<4",
"mitmproxy>=10.3.0,<11",
"mitmproxy>=11.0.0,<12",
"opencv-python>=4.9.0.80,<5",
"playwright>=1.40.0,<2",
"protobuf>=5.26.1,<6",
Expand All @@ -37,11 +37,11 @@ majsoulrpa_remote_browser = "majsoulrpa.remote_browser._remote_browser:main"
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.rye]
[tool.uv]
managed = true
dev-dependencies = [
"mypy>=1.8.0,<2",
"ruff>=0.5.0,<0.6",
"ruff>=0.6.0,<0.7",
"types-protobuf>=5.26.0.20240422,<6",
"types-jsonschema>=4.20.0.0,<5",
"boto3-stubs[s3]>=1.34.11,<2",
Expand Down Expand Up @@ -89,5 +89,13 @@ ignore-overlong-task-comments = true
convention = "google"

[tool.ruff.lint.extend-per-file-ignores]
"./examples/*" = ["S101", "INP001", "T201", "TRY004"]
"./tests/*" = ["S101", "SLF001"]
"./examples/*" = [
"S101", # assert
"INP001", # implicit-namespace-package
"T201", # print
"TRY004", # type-check-without-type-error
]
"./tests/*" = [
"S101", # assert
"SLF001" # private-member-access
]
2 changes: 1 addition & 1 deletion src/majsoulrpa/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.5"
__version__ = "0.0.6"

0 comments on commit aed0841

Please sign in to comment.