Skip to content

Commit

Permalink
fix: pin a recent version of virtualenv for Python 3.12 + Nox
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Nov 21, 2023
1 parent fb8c164 commit f95d4aa
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 39 deletions.
16 changes: 4 additions & 12 deletions .calcipy_packaging.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@
"name": "anyio",
"version": "4.0.0"
},
"appdirs": {
"datetime": "2020-05-11T07:59:49.499913+00:00",
"domain": "https://pypi.org/pypi/{name}/json",
"latest_datetime": "2020-05-11T07:59:49.499913+00:00",
"latest_version": "1.4.4",
"name": "appdirs",
"version": "1.4.4"
},
"argcomplete": {
"datetime": "2023-11-12T21:29:27.611335+00:00",
"domain": "https://pypi.org/pypi/{name}/json",
Expand Down Expand Up @@ -656,12 +648,12 @@
"version": "2.8.1"
},
"platformdirs": {
"datetime": "2023-11-10T16:43:06.949502+00:00",
"datetime": "2023-10-02T15:16:29.336774+00:00",
"domain": "https://pypi.org/pypi/{name}/json",
"latest_datetime": "2023-11-10T16:43:06.949502+00:00",
"latest_version": "4.0.0",
"name": "platformdirs",
"version": "4.0.0"
"version": "3.11.0"
},
"pluggy": {
"datetime": "2023-08-26T19:10:18.887822+00:00",
Expand Down Expand Up @@ -1064,12 +1056,12 @@
"version": "5.1.0"
},
"virtualenv": {
"datetime": "2021-05-24T18:15:38.798779+00:00",
"datetime": "2023-10-23T18:22:55.453078+00:00",
"domain": "https://pypi.org/pypi/{name}/json",
"latest_datetime": "2023-10-23T18:22:55.453078+00:00",
"latest_version": "20.24.6",
"name": "virtualenv",
"version": "20.4.7"
"version": "20.24.6"
},
"watchdog": {
"datetime": "2023-03-20T09:20:25.047937+00:00",
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased

### Fix

- pin a recent version of virtualenv for Python 3.12 + Nox

## 2.0.2 (2023-11-08)

### Refactor
Expand Down
40 changes: 14 additions & 26 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ ruff = {optional = true, version = ">=0.1.5"} # lint
semver = ">=3.0.1" # experimental
tabulate = {optional = true, version = ">=0.9.0"} # tags: Required for pandas to markdown
transitions = {optional = true, version = ">=0.9.0"} # tags: docs
virtualenv = {optional = true, version = ">=20.24.0"} # tags: nox. PRevents 'scripts' KeyError with Python 3.12

[tool.poetry.extras]
ddict = ["python-box"]
Expand Down Expand Up @@ -114,7 +115,7 @@ lint = [
"pip-check",
"ruff",
]
nox = ["nox-poetry"]
nox = ["nox-poetry", "virtualenv"]
pylint = ["pylint"]
stale = [
"arrow",
Expand Down

0 comments on commit f95d4aa

Please sign in to comment.