Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading Dependencies #516

Open
wants to merge 30 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d5290dc
Refactoring Dependencies to drop 3.7 and 3.8 support
TheBurchLog Nov 1, 2024
a149fae
Update pr actions to include 3.12 and 3.13
TheBurchLog Nov 1, 2024
5fdaca3
fixing UTC usage
TheBurchLog Nov 1, 2024
083c245
Migrate to new date time field
TheBurchLog Nov 4, 2024
621e13c
Fixed Marshmallow
TheBurchLog Nov 4, 2024
f0e4b6d
Remove Metadata for legacy marshmallow schemas
TheBurchLog Nov 4, 2024
35698fd
removed legacy test
TheBurchLog Nov 4, 2024
957bf8f
Removing pytz dependency
TheBurchLog Nov 4, 2024
284a0bf
replaced utcnow() function
TheBurchLog Nov 4, 2024
53c7b33
Fixed now utc
TheBurchLog Nov 5, 2024
abae4ab
Raw fields as many
TheBurchLog Nov 5, 2024
91d720b
Reverted to legacy datatime object
TheBurchLog Nov 6, 2024
b8d7e69
fixed imports
TheBurchLog Nov 6, 2024
80e0116
add float support for epoch
TheBurchLog Nov 6, 2024
fae7b8c
Set Timezone
TheBurchLog Nov 13, 2024
cc5f8c5
Adding to_epoch support for timezones
TheBurchLog Nov 13, 2024
5e83310
Update fixtures.py
TheBurchLog Nov 13, 2024
4b18147
Update fixtures.py
TheBurchLog Nov 13, 2024
35c309a
Merge branch 'develop' into python_3_9_support
TheBurchLog Nov 21, 2024
3b87309
Updating Timezone Defaults
TheBurchLog Nov 22, 2024
07cfdca
Updating Testing
TheBurchLog Nov 22, 2024
e580283
Merge branch 'develop' into python_3_9_support
TheBurchLog Dec 2, 2024
8161380
Adding strict feature for parsing
TheBurchLog Dec 3, 2024
4edbb37
load valid data
TheBurchLog Dec 3, 2024
3531482
return valid data
TheBurchLog Dec 3, 2024
17875b0
logging
TheBurchLog Dec 3, 2024
fa87a9b
exclude unknown fields
TheBurchLog Dec 3, 2024
dbe77f4
exclude unknown fields
TheBurchLog Dec 3, 2024
7d074e1
formatting
TheBurchLog Dec 11, 2024
c93f194
Merge branch 'develop' into python_3_9_support
TheBurchLog Dec 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
return valid data
TheBurchLog committed Dec 3, 2024
commit 353148206eb2f82f0fd4ae372fc0f323c1e12dd4
2 changes: 1 addition & 1 deletion brewtils/schema_parser.py
Original file line number Diff line number Diff line change
@@ -570,7 +570,7 @@ def parse(
if strict:
raise err
cls.logger.error(err.messages)
return schema.load(err.valid_data)
return err.valid_data

# Serialization methods
@classmethod