Skip to content

Commit

Permalink
add support for python 3.12 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rkingsbury committed May 20, 2024
1 parent 19a1a0a commit 29a61c4
Show file tree
Hide file tree
Showing 7 changed files with 1,227 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
os: ['ubuntu-latest', 'macos-latest']
package: ["."]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
Expand Down
161 changes: 161 additions & 0 deletions requirements/macos-latest_py3.12.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --output-file=requirements/macos-latest_py3.11.txt
#
aioitertools==0.11.0
# via maggma (setup.py)
annotated-types==0.6.0
# via pydantic
anyio==3.7.1
# via
# fastapi
# starlette
attrs==23.1.0
# via
# jsonschema
# referencing
bcrypt==4.1.1
# via paramiko
blinker==1.7.0
# via flask
boto3==1.33.11
# via maggma (setup.py)
botocore==1.33.11
# via
# boto3
# s3transfer
certifi==2023.11.17
# via requests
cffi==1.16.0
# via
# cryptography
# pynacl
charset-normalizer==3.3.2
# via requests
click==8.1.7
# via
# flask
# mongogrant
# uvicorn
cryptography==42.0.4
# via paramiko
dnspython==2.6.1
# via
# maggma (setup.py)
# pymongo
fastapi==0.104.1
# via maggma (setup.py)
flask==3.0.0
# via mongogrant
h11==0.14.0
# via uvicorn
idna==3.7
# via
# anyio
# requests
itsdangerous==2.1.2
# via flask
jinja2==3.1.4
# via flask
jmespath==1.0.1
# via
# boto3
# botocore
jsonschema==4.20.0
# via maggma (setup.py)
jsonschema-specifications==2023.11.2
# via jsonschema
markupsafe==2.1.3
# via
# jinja2
# werkzeug
mongogrant==0.3.3
# via maggma (setup.py)
mongomock==4.1.2
# via maggma (setup.py)
monty==2023.11.3
# via maggma (setup.py)
msgpack==1.0.7
# via maggma (setup.py)
numpy==1.26.2
# via maggma (setup.py)
orjson==3.9.15
# via maggma (setup.py)
packaging==23.2
# via mongomock
paramiko==3.3.1
# via sshtunnel
pycparser==2.21
# via cffi
pydantic==2.5.2
# via
# fastapi
# maggma (setup.py)
# pydantic-settings
pydantic-core==2.14.5
# via pydantic
pydantic-settings==2.1.0
# via maggma (setup.py)
pydash==7.0.6
# via maggma (setup.py)
pymongo==4.6.3
# via
# maggma (setup.py)
# mongogrant
pynacl==1.5.0
# via paramiko
python-dateutil==2.8.2
# via
# botocore
# maggma (setup.py)
python-dotenv==1.0.0
# via pydantic-settings
pyzmq==25.1.2
# via maggma (setup.py)
referencing==0.32.0
# via
# jsonschema
# jsonschema-specifications
requests==2.31.0
# via mongogrant
rpds-py==0.13.2
# via
# jsonschema
# referencing
ruamel-yaml==0.17.40
# via maggma (setup.py)
ruamel-yaml-clib==0.2.8
# via ruamel-yaml
s3transfer==0.8.2
# via boto3
sentinels==1.0.0
# via mongomock
six==1.16.0
# via python-dateutil
sniffio==1.3.0
# via anyio
sshtunnel==0.4.0
# via maggma (setup.py)
starlette==0.36.2
# via fastapi
tqdm==4.66.3
# via maggma (setup.py)
typing-extensions==4.9.0
# via
# fastapi
# pydantic
# pydantic-core
# pydash
urllib3==2.0.7
# via
# botocore
# requests
uvicorn==0.24.0.post1
# via maggma (setup.py)
werkzeug==3.0.3
# via flask

# The following packages are considered to be unsafe in a requirements file:
# setuptools
Loading

0 comments on commit 29a61c4

Please sign in to comment.