Skip to content

Commit

Permalink
Remove all nonsensical python_version ranges
Browse files Browse the repository at this point in the history
The application needs >= 3.9, so having them for each dep is superfluous

Basically we need just things like these:

> exceptiongroup==1.2.2; python_version < '3.11'
  • Loading branch information
glensc committed Oct 21, 2024
1 parent 18a9768 commit f47835c
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 104 deletions.
22 changes: 11 additions & 11 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ verify_ssl = true
[packages]
apluggy = "==1.0.3"
attrs = "==24.2.0"
cattrs = {version="==24.1.2", python_version=">='3.7'"}
cattrs = "==24.1.2"
certifi = "==2024.8.30"
charset-normalizer = "==3.4.0"
click = "==8.1.7"
decorator = "==5.1.1"
deprecated = "==1.2.14"
humanize = "==4.11.0"
idna = {version="==3.10", python_version=">='3.5'"}
idna = "==3.10"
inquirerpy = "==0.3.4"
markdown-it-py = {version="==3.0.0", python_version=">='3.7'"}
mdurl = {version="==0.1.2", python_version=">='3.7'"}
markdown-it-py = "==3.0.0"
mdurl = "==0.1.2"
oauthlib = "==3.2.2"
pfzy = {version="==0.3.4", markers="python_version >= '3.7' and python_version < '4.0'"}
platformdirs = {version="==4.3.6", python_version=">='3.7'"}
pfzy = "==0.3.4"
platformdirs = "==4.3.6"
plexapi = "==4.15.16"
pluggy = "==1.5.0"
prompt-toolkit = "==3.0.48"
Expand All @@ -33,16 +33,16 @@ pytrakt = "==3.4.32"
pyyaml = "==6.0.2"
requests = "==2.32.3"
requests-cache = "==1.2.1"
requests-oauthlib = {version="==2.0.0", python_version=">='3.4'"}
requests-oauthlib = "==2.0.0"
rich = "==13.9.2"
six = {version="==1.16.0", python_version=">='3.4'"}
six = "==1.16.0"
tqdm = "==4.66.5"
typing-extensions = {version="==4.12.2", python_version=">= '3.8'"}
url-normalize = {version="==1.4.3", python_version=">='3.6'"}
typing-extensions = "==4.12.2"
url-normalize = "==1.4.3"
urllib3 = "==2.2.3"
wcwidth = "==0.2.13"
websocket-client = "==1.8.0"
wrapt = {version="==1.16.0", python_version=">='3.5'"}
wrapt = "==1.16.0"

[requires]
python_version = "3"
Expand Down
66 changes: 2 additions & 64 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f47835c

Please sign in to comment.