Skip to content

Commit

Permalink
Update pycryptodome, SQLAlchemy (#71)
Browse files Browse the repository at this point in the history
* Update pycryptodome, SQLAlchemy

* pep-8 fix

* Add test against Python 3.10
  • Loading branch information
gabfl authored Sep 13, 2022
1 parent 9325113 commit cb17baf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.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.7', '3.8', '3.9']
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except(IOError, ImportError):
except (IOError, ImportError):
long_description = open('README.md').read()

setup(
name='pyvault',
version='2.4.2',
version='2.4.3',
description='Python password manager',
long_description=long_description,
author='Gabriel Bordeaux',
Expand All @@ -19,11 +19,11 @@
'vault.modules', 'vault.views'],
package_dir={'vault': 'src'},
install_requires=[
'pycryptodome==3.12.0',
'pycryptodome==3.15.0',
'pyperclip',
'tabulate',
'passwordgenerator',
'SQLAlchemy==1.4.28',
'SQLAlchemy==1.4.41',
'sqlcipher3==0.4.5'
], # external dependencies
entry_points={
Expand Down

0 comments on commit cb17baf

Please sign in to comment.