Skip to content

Commit

Permalink
Update pinned dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMacIver committed Oct 16, 2022
1 parent 4394167 commit e657779
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then
else
# Otherwise, we install it from scratch
# NOTE: tooling keeps this version in sync with ci_version in tooling
"$SCRIPTS/ensure-python.sh" 3.8.14
PYTHON=$(pythonloc 3.8.14)/bin/python
"$SCRIPTS/ensure-python.sh" 3.8.15
PYTHON=$(pythonloc 3.8.15)/bin/python
fi

TOOL_REQUIREMENTS="$ROOT/requirements/tools.txt"
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def local_file(name):
# zoneinfo is an odd one: every dependency is conditional, because they're
# only necessary on old versions of Python or Windows systems.
"zoneinfo": [
"tzdata>=2022.4 ; sys_platform == 'win32'",
"tzdata>=2022.5 ; sys_platform == 'win32'",
"backports.zoneinfo>=0.2.1 ; python_version<'3.9'",
],
# We only support Django versions with upstream support - see
Expand Down
4 changes: 2 additions & 2 deletions requirements/coverage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exceptiongroup==1.0.0rc9 ; python_version < "3.11"
# via hypothesis (hypothesis-python/setup.py)
execnet==1.9.0
# via pytest-xdist
fakeredis==1.9.3
fakeredis==1.9.4
# via -r requirements/coverage.in
iniconfig==1.1.1
# via pytest
Expand All @@ -40,7 +40,7 @@ mypy-extensions==0.4.3
# via
# black
# typing-inspect
numpy==1.23.3
numpy==1.23.4
# via
# -r requirements/coverage.in
# pandas
Expand Down
14 changes: 7 additions & 7 deletions requirements/tools.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ attrs==22.1.0
# flake8-bugbear
# hypothesis (hypothesis-python/setup.py)
# pytest
autoflake==1.7.0
autoflake==1.7.6
# via shed
babel==2.10.3
# via sphinx
Expand Down Expand Up @@ -45,7 +45,7 @@ click==8.1.3
# via
# black
# pip-tools
codespell==2.2.1
codespell==2.2.2
# via -r requirements/tools.in
com2ann==0.3.0
# via shed
Expand Down Expand Up @@ -122,7 +122,7 @@ flake8-simplify==0.19.3
# via -r requirements/tools.in
gitdb==4.0.9
# via gitpython
gitpython==3.1.28
gitpython==3.1.29
# via bandit
idna==3.4
# via requests
Expand Down Expand Up @@ -232,15 +232,15 @@ pygments==2.13.0
# sphinx
pyparsing==3.0.9
# via packaging
pyright==1.1.274
pyright==1.1.275
# via -r requirements/tools.in
pytest==7.1.3
# via -r requirements/tools.in
python-dateutil==2.8.2
# via -r requirements/tools.in
pytz==2022.4
# via babel
pyupgrade==3.0.0
pyupgrade==3.1.0
# via shed
pyyaml==6.0
# via
Expand Down Expand Up @@ -312,7 +312,7 @@ sqlparse==0.4.3
# via django
stack-data==0.5.1
# via ipython
stevedore==4.0.0
stevedore==4.0.1
# via bandit
tokenize-rt==5.0.0
# via pyupgrade
Expand All @@ -339,7 +339,7 @@ types-pkg-resources==0.1.3
# via -r requirements/tools.in
types-pytz==2022.4.0.0
# via -r requirements/tools.in
types-redis==4.3.21.1
types-redis==4.3.21.2
# via -r requirements/tools.in
typing-extensions==4.4.0
# via
Expand Down
8 changes: 4 additions & 4 deletions tooling/src/hypothesistooling/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,10 +380,10 @@ def run_tox(task, version, *args):
# When a version is added or removed, manually update the env lists in tox.ini and
# workflows/main.yml, and the `Programming Language ::` specifiers in setup.py
PYTHONS = {
"3.7": "3.7.14",
"3.8": "3.8.14",
"3.9": "3.9.14",
"3.10": "3.10.7",
"3.7": "3.7.15",
"3.8": "3.8.15",
"3.9": "3.9.15",
"3.10": "3.10.8",
"3.11": "3.11-dev",
"3.12": "3.12-dev",
"pypy3.7": "pypy3.7-7.3.9",
Expand Down

0 comments on commit e657779

Please sign in to comment.