Update Pipfile to only install toml when we're below Python 3.11

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-05-23 19:15:50 -07:00
parent 580cf52cad
commit 240e4e5f29
2 changed files with 3 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ name = "pypi"
[packages] [packages]
async-irc = "*" async-irc = "*"
toml = "*" toml = {version="*", markers="python_version < '3.11'"}
types-toml = "*" types-toml = "*"
[dev-packages] [dev-packages]

3
Pipfile.lock generated
View File

@@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "383b4f4eb921d1fb5480b141cb699db971c38445f9f5debb5e13de4a878b9ace" "sha256": "fab0d0c52f660b31d3a29fba2b8bf59ade4ef142b48d926bc9f7253fa96e0a82"
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": { "requires": {
@@ -38,6 +38,7 @@
"sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"
], ],
"index": "pypi", "index": "pypi",
"markers": "python_version < '3.11'",
"version": "==0.10.2" "version": "==0.10.2"
}, },
"types-toml": { "types-toml": {