Skip to content

Commit

Permalink
Defer manylinux builds until tests pass; these builds are just doing …
Browse files Browse the repository at this point in the history
…a compilation, no testing.
  • Loading branch information
jamadden committed Jun 27, 2023
1 parent 527e7bf commit 8162ca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ jobs:
parallel-finished: true

manylinux:
needs: test
runs-on: ubuntu-latest
# We use a regular Python matrix entry to share as much code as possible.
strategy:
Expand Down
6 changes: 1 addition & 5 deletions src/relstorage/adapters/mysql/drivers/mysqlconnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,8 @@ def _get_converter_class(cls):
# XXX: It's possible this area is where the problems on
# mysql.connector >= 8.0.33 are introduced.
class BlobConverter(mysql.connector.conversion.MySQLConverter):

def __init__(self, charset_name, use_unicode):
super().__init__(charset_name, use_unicode)

# There are a few places we get into trouble on
# Python 2/3 with bytearrays comping back: they
# Python 2/3 with bytearrays coming back: they
# can't be hashed for the local_client compression
# functions or sent to zlib.decompress(), they
# can't be sent to pickle.loads(), etc, so it's
Expand Down

0 comments on commit 8162ca0

Please sign in to comment.