Skip to content

Commit

Permalink
Python 3.11 support (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogervila committed May 26, 2023
1 parent 61bd1d3 commit 40b1484
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions equipment/console/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
click==8.1.0
Faker==13.3.4
click==8.1.3
Faker==18.9.0
15 changes: 8 additions & 7 deletions equipment/framework/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
cachier==1.5.4
coverage==6.3.2
dependency-injector==4.39.1
Faker==13.3.4
click==8.1.3
coverage==7.2.6
dependency-injector==4.41.0
Faker==18.9.0
html2text==2020.1.16
icecream==2.1.2
icecream==2.1.3
jinja-markdown==1.210911
Jinja2==3.1.1
Jinja2==3.1.2
moto[all]==3.1.3
parent-import==0.0.1
premailer==3.10.0
py_dto==1.0.0
python-dotenv==0.20.0
python-dotenv==1.0.0
python-optional==1.1.0
schedule==1.1.0
schedule==1.2.0
20 changes: 10 additions & 10 deletions equipment/project/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
-e ../../
alembic==1.7.7 # Remove if SQLAlchemy is not used
boto3==1.21.29 # Remove if AWS is not used (affects "ses" email and "s3" storage drivers)
flask==2.1.0 # Remove if web server is not used
Flask-WTF==1.0.0 # Remove if web server is not used
alembic==1.11.1 # Remove if SQLAlchemy is not used
boto3==1.26.141 # Remove if AWS is not used (affects "ses" email and "s3" storage drivers)
flask==2.3.2 # Remove if web server is not used
Flask-WTF==1.1.1 # Remove if web server is not used
mail1==4.1.0 # Remove if "smtp" email driver is not used
mysqlclient==2.1.0 # Remove mysqlclient if MySQL is not used
neomodel==4.0.8 # Remove neomodel if Neo4J is not used
psycopg2-binary==2.9.3 # Remove psycopg2-binary if PostgreSQL is not used
neomodel==5.0.0 # Remove neomodel if Neo4J is not used
psycopg2-binary==2.9.6 # Remove psycopg2-binary if PostgreSQL is not used
pygelf==0.4.2 # Remove if "gelf" log driver is not used
pymongo==4.0.2 # Remove if MongoDB is not used
pyodbc==4.0.32 # Remove if SQLServer is not used
redis==4.5.4 # Remove if Redis is not used (affects "redis" queue driver and RedisConnection)
rq==1.10.1 # Remove if "Redis" queue driver is not used
pymongo==4.3.3 # Remove if MongoDB is not used
pyodbc==4.0.39 # Remove if SQLServer is not used
redis==4.5.5 # Remove if Redis is not used (affects "redis" queue driver and RedisConnection)
rq==1.14.1 # Remove if "Redis" queue driver is not used
sqlalchemy==1.4.32 # Remove if SQL connections are not used
waitress==2.1.2 # Remove if web server is not used

1 comment on commit 40b1484

@vercel
Copy link

@vercel vercel bot commented on 40b1484 May 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

equipment – ./

equipment-python.vercel.app
equipment-rogervila.vercel.app
equipment-git-main-rogervila.vercel.app

Please sign in to comment.