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

Patch 1.0.1 #123

Merged
merged 38 commits into from
Jul 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2359dde
Fix error reporting bug
Erotemic Apr 4, 2022
e75fa99
wip
Erotemic May 6, 2022
3c4aee7
Make deprecations robust, add global state for debugging
Erotemic Jun 9, 2022
9195cd8
Debugging notes
Erotemic Jun 9, 2022
ce2961d
fix paragraph doctest
Erotemic Jun 9, 2022
8e6f174
doc update
Erotemic Jun 12, 2022
db2e60f
Enhance google docs return type parser
Erotemic Jun 15, 2022
958d939
Fix issue with tests being not marked as skipped
Erotemic Jun 19, 2022
e07d5ec
Remove bad prints
Erotemic Jun 22, 2022
5b8ba6e
Update docstr code
Erotemic Jun 27, 2022
93527db
work on modernizing setup
Erotemic Jul 9, 2022
fc603a6
Change the testing directory to tests
Erotemic Jul 9, 2022
0492c2e
Update to modern deprecation func
Erotemic Jul 9, 2022
dcccde3
Fix loose version warnings
Erotemic Jul 9, 2022
22cf3cc
Removed convert google to numpy script
Erotemic Jul 9, 2022
a4958c0
remove 3.4
Erotemic Jul 9, 2022
3b7bd6d
Fix some types
Erotemic Jul 9, 2022
be9ad5a
Attempt 2.7 fix
Erotemic Jul 9, 2022
f29994c
Bump min jupyter core
Erotemic Jul 9, 2022
726fcb3
fixing min versions
Erotemic Jul 9, 2022
5d59f48
Add types and fix google docstrings to agree
Erotemic Jul 9, 2022
1847de6
Does 3.4 work?
Erotemic Jul 9, 2022
01d2401
Update docs
Erotemic Jul 9, 2022
26f39e6
Checker types
Erotemic Jul 10, 2022
6d81cd4
wip
Erotemic Jul 10, 2022
d777268
Defined types in most cases
Erotemic Jul 10, 2022
43f9790
pypy fix
Erotemic Jul 10, 2022
3a55f51
Disable import test on pypi
Erotemic Jul 10, 2022
5abca78
update readme
Erotemic Jul 10, 2022
9083361
prepare for moving module to src directory
Erotemic Jul 10, 2022
f66ea6c
move library code into the src directory
Erotemic Jul 10, 2022
74a3eee
Finish src reorganization
Erotemic Jul 10, 2022
c69cd87
Fix issue
Erotemic Jul 10, 2022
eb46684
Remove 3.4 support
Erotemic Jul 10, 2022
ffae368
Fix RTD
Erotemic Jul 10, 2022
66abd6c
Bump coverage
Erotemic Jul 10, 2022
192eae8
py2
Erotemic Jul 10, 2022
bde9594
Fix win32 test
Erotemic Jul 10, 2022
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
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ workflows:
- test_full/cp35-35m-linux:
filters:
<<: *__ignore_release__
- test_full/cp34-34m-linux:
filters:
<<: *__ignore_release__
#- test_full/cp34-34m-linux:
# filters:
# <<: *__ignore_release__
- test_full/cp27-27mu-linux:
filters:
<<: *__ignore_release__
Expand All @@ -72,9 +72,9 @@ workflows:
- test_minimal/cp35-35m-linux:
filters:
<<: *__ignore_release__
- test_minimal/cp34-34m-linux:
filters:
<<: *__ignore_release__
#- test_minimal/cp34-34m-linux:
# filters:
# <<: *__ignore_release__
- test_minimal/cp27-27mu-linux:
filters:
<<: *__ignore_release__
Expand Down Expand Up @@ -229,10 +229,10 @@ jobs:
docker:
- image: cimg/python:3.5

test_full/cp34-34m-linux:
<<: *test_full_template
docker:
- image: circleci/python:3.4
#test_full/cp34-34m-linux:
# <<: *test_full_template
# docker:
# - image: circleci/python:3.4

test_full/cp27-27mu-linux:
<<: *test_full_template
Expand Down Expand Up @@ -270,10 +270,10 @@ jobs:
docker:
- image: cimg/python:3.5

test_minimal/cp34-34m-linux:
<<: *test_minimal_template
docker:
- image: circleci/python:3.4
#test_minimal/cp34-34m-linux:
# <<: *test_minimal_template
# docker:
# - image: circleci/python:3.4

test_minimal/cp27-27mu-linux:
<<: *test_minimal_template
Expand Down
2 changes: 0 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,3 @@ omit =
xdoctest/__main__.py
xdoctest/__init__.py
xdoctest/exceptions.py
xdoctest/_old*.py
xdoctest/_grave*.py
Loading