Move cryptography to 3.0 - less old openssl - Update workflow name for lint (#323)
* cryptography to 3.0 - less openssl dependency * Rename worklflow to Lint and upload. * Actually change workflow name in both places
This commit is contained in:
parent
392b21bdaf
commit
3f6cea6844
|
@ -1,10 +1,10 @@
|
||||||
name: Upload source distribution to PyPI
|
name: Lint and upload source distribution to PyPI
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
upload_source_dist:
|
upload_source_dist:
|
||||||
name: Upload source distribution
|
name: Lint and Upload source distribution
|
||||||
runs-on: [ubuntu-latest]
|
runs-on: [ubuntu-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -15,7 +15,7 @@ dependencies = [
|
||||||
"cbor2==5.1.0", # Used for network wire format
|
"cbor2==5.1.0", # Used for network wire format
|
||||||
"colorlog==4.1.0", # Adds color to logs
|
"colorlog==4.1.0", # Adds color to logs
|
||||||
"concurrent-log-handler==0.9.16", # Concurrently log and rotate logs
|
"concurrent-log-handler==0.9.16", # Concurrently log and rotate logs
|
||||||
"cryptography==2.9.2", #Python cryptography library for TLS
|
"cryptography==3.0", #Python cryptography library for TLS
|
||||||
"keyring==21.2.1", # Store keys in MacOS Keychain, Windows Credential Locker
|
"keyring==21.2.1", # Store keys in MacOS Keychain, Windows Credential Locker
|
||||||
"keyrings.cryptfile==1.3.4", # Secure storage for keys on Linux (Will be replaced)
|
"keyrings.cryptfile==1.3.4", # Secure storage for keys on Linux (Will be replaced)
|
||||||
"PyYAML==5.3.1", # Used for config file format
|
"PyYAML==5.3.1", # Used for config file format
|
||||||
|
|
Loading…
Reference in New Issue