Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
0.1.6: fix versions of python
Browse files Browse the repository at this point in the history
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
  • Loading branch information
Ari Archer committed Jan 15, 2023
1 parent 22c5457 commit b7d5d15
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pyproject.lock
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ python-versions = "*"
platform = "*"

[metadata]
python-versions = "^3.8"
python-versions = "^3.10"
platform = "*"
content-hash = "4f2ac0aba112ff67dd5449d3884bc07978ea2bd242184751ace939417128f419"
content-hash = "47c151f1c93602a42bc61a002082418be9f13a130d20a96a41080b177327b229"

[metadata.hashes]
plumbum = []
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "arigram"
version = "0.1.5"
version = "0.1.6"
description = "A fork of tg -- a hackable telegram TUI client"
authors = ["TruncatedDinosour <ari.web.xyz@gmail.com>"]
license = "Unlicense"
Expand All @@ -9,7 +9,7 @@ homepage = "https://github.com/TruncatedDinosour/arigram"
repository = "https://github.com/TruncatedDinosour/arigram"

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"
python-telegram = "^0.16.0"
pyfzf = "^0.2.2"
pyperclip = "^1.8.2"
Expand Down
2 changes: 1 addition & 1 deletion runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8
3.10
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@
author_email="ari.web.xyz@gmail.com",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=["arigram"],
entry_points={"console_scripts": ["arigram = arigram.__main__:main"]},
python_requires=">=3.8",
python_requires=">=3.10",
install_requires=reqs,
)

0 comments on commit b7d5d15

Please sign in to comment.