Skip to content

Commit

Permalink
wip update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
BondarenkoStas committed Feb 7, 2024
1 parent 671d389 commit fc3b3b1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Jinja2==3.0.0
pandas==1.3.0
PyYAML==5.4
snowflake-connector-python==2.8.0
Jinja2~=3.0
pandas~=1.3
PyYAML~=6.0
snowflake-connector-python>=2.8,<4.0
4 changes: 2 additions & 2 deletions schemachange/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
from jinja2.loaders import BaseLoader
from pandas import DataFrame

#region Global Variables
#region Global Variables
# metadata
_schemachange_version = '3.5.3'
_schemachange_version = '3.5.4'
_config_file_name = 'schemachange-config.yml'
_metadata_database_name = 'METADATA'
_metadata_schema_name = 'SCHEMACHANGE'
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = schemachange
version = 3.5.3
version = 3.5.4
author = jamesweakley/jeremiahhansen
description = A Database Change Management tool for Snowflake
long_description = file: README.md
Expand All @@ -16,10 +16,10 @@ classifiers =
packages = schemachange
python_requires = >=3.7
install_requires =
snowflake-connector-python~=2.8
pandas~=1.3
pyyaml~=5.4
jinja2~=3.0
pandas~=1.3
pyyaml~=6.0
snowflake-connector-python>=2.8,<4.0
include_package_data = True

[options.entry_points]
Expand Down

0 comments on commit fc3b3b1

Please sign in to comment.