Skip to content

Commit 3ff7a14

Browse files
authored
Merge pull request #42 from Tyskiep99/bump_versions
fix: Clean requirements and add py3.9 and 3.10 to ci
2 parents 7983abe + 43cc46e commit 3ff7a14

File tree

4 files changed

+12
-15
lines changed

4 files changed

+12
-15
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1+
dist: focal
12
language: python
23
python:
34
- '3.6'
45
- '3.7'
56
- '3.8'
7+
- '3.9'
8+
- '3.10.1'
69
install:
710
- pip install -r requirements.txt
811
- pip install -r dev_requirements.txt --upgrade
912
- pip install coveralls
1013
script:
1114
- pytest --cov flask_authz
1215
after_success:
13-
- coveralls
16+
- coveralls

dev_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sphinx
55
sphinx_rtd_theme
66
pytest
77
pytest-cov
8-
casbin_sqlalchemy_adapter==0.3.2
8+
casbin_sqlalchemy_adapter>=0.3.2
99
coverage
1010
pypi-publisher
11-
bumpversion
11+
bumpversion

requirements.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
casbin
2-
flask~=1.1.2
3-
PyJWT
1+
casbin>=1.0.0<2.0.0
2+
flask>=1.1.0<3.0.0
3+
PyJWT>=2.0.1

requirements.txt

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
casbin==1.0.4
2-
click==7.1.2
3-
flask==1.1.2
4-
itsdangerous==1.1.0
5-
jinja2==2.11.3
6-
markupsafe==1.1.1
7-
pyjwt==2.0.1
8-
simpleeval==0.9.10
9-
werkzeug==1.0.1
1+
casbin>=1.0.0<2.0.0
2+
flask>=1.1.0<3.0.0
3+
PyJWT>=2.0.1

0 commit comments

Comments
 (0)