Skip to content

Commit 79613c8

Browse files
committed
v1.0.0 release
2 parents e94a08b + 2d0b221 commit 79613c8

File tree

260 files changed

+40350
-12118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+40350
-12118
lines changed

.coveragerc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[report]
2+
exclude_lines =
3+
pragma: no cover
4+
pass
5+
precision = 2

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Exclude certain folders from release
2+
/doc export-ignore
3+
/img export-ignore
4+
/tests export-ignore
5+
.gitignore export-ignore
6+
.gitattributes export-ignore
7+
.gitlab-ci.yml export-ignore
8+
9+
# Line endings
10+
*.sh text=auto eol=lf
11+
*.py text=auto eol=lf

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# Compiled files
99
__pycache__/
1010
*.py[cod]
11+
*.egg-info
12+
dist/
1113

1214
# Eclipse-related files
1315
.classpath
@@ -19,4 +21,12 @@ __pycache__/
1921
.buildinfo
2022
/doc/_build/
2123
/doc/generated/
24+
/doc/api/generated/
25+
/doc/savefig/
2226

27+
# Coverage
28+
*.coverage*
29+
htmlcov/
30+
31+
# Jupyter
32+
*.ipynb_checkpoints/

.gitlab-ci.yml

100644100755
+68-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,74 @@
1+
2+
stages:
3+
- test1
4+
- test2
5+
- deploy
6+
7+
default:
8+
before_script:
9+
- apt-get update -qq
10+
- 'which ssh-agent || ( apt-get install -qq -y openssh-client )'
11+
- eval $(ssh-agent -s)
12+
- ssh-add <(echo "$SSH_PRIVATE_KEY")
13+
- mkdir -p ~/.ssh
14+
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
15+
- scp $CASCOPY ~/
16+
17+
py36:
18+
stage: test1
19+
image: python:3.6
20+
script:
21+
- python setup.py install
22+
- pip install coverage
23+
- cd tests
24+
- ./test_coverage.sh
25+
126
py37:
27+
stage: test2
228
image: python:3.7
329
script:
430
- python setup.py install
31+
- pip install coverage
532
- cd tests
6-
- python test_generators.py
33+
- ./test_coverage.sh
734

8-
#py36:
9-
# image: python:3.6
10-
# script:
11-
# - python setup.py install
12-
# - cd tests
13-
# - python test_generators.py
14-
#
15-
#py35:
16-
# image: python:3.5
17-
# script:
18-
# - python setup.py install
19-
# - cd tests
20-
# - python test_generators.py
35+
push_to_pypi:
36+
image: python:latest
37+
stage: deploy
38+
before_script:
39+
- apt-get update -qq
40+
script:
41+
- python -m pip install --upgrade setuptools wheel
42+
- python setup.py sdist bdist_wheel
43+
- python -m pip install --upgrade twine
44+
- echo $PYPI_URL
45+
- python -m twine upload --skip-existing -u __token__ -p $PYPI_TOKEN --repository-url $PYPI_URL dist/*
46+
when: manual
47+
48+
push_to_conda:
49+
image: python:latest
50+
stage: deploy
51+
before_script:
52+
- apt-get update -qq
53+
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
54+
- bash miniconda.sh -b -p $HOME/miniconda
55+
- PATH=$PATH:$HOME/miniconda/bin
56+
- conda config --set always_yes yes
57+
- conda config --add channels conda-forge
58+
- conda config --add channels sas-institute
59+
- conda install conda-build
60+
- conda update -n base -c defaults conda
61+
- conda install anaconda-client
62+
- conda install conda-verify
63+
- mkdir build
64+
script:
65+
- conda build -c conda-forge -c sas-institute --output-folder build/ --python 3.6 conda/
66+
- conda build -c conda-forge -c sas-institute --output-folder build/ --python 3.7 conda/
67+
- cd build
68+
- conda convert -p all `ls linux-64/*-py3*.tar.bz2`
69+
- anaconda -t $ANACONDA_TOKEN upload -u sas-institute --force `ls linux-64/*-py3*.tar.bz2`
70+
- anaconda -t $ANACONDA_TOKEN upload -u sas-institute --force `ls linux-32/*-py3*.tar.bz2`
71+
- anaconda -t $ANACONDA_TOKEN upload -u sas-institute --force `ls win-32/*-py3*.tar.bz2`
72+
- anaconda -t $ANACONDA_TOKEN upload -u sas-institute --force `ls win-64/*-py3*.tar.bz2`
73+
- anaconda -t $ANACONDA_TOKEN upload -u sas-institute --force `ls osx-64/*-py3*.tar.bz2`
74+
when: manual

CONTRIBUTING.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Contributing to sasoptpy
2+
3+
We welcome all contributions including bug reports, new features,
4+
documentation fixes, performance enchancements, and new ideas.
5+
6+
## Submitting a Pull Request
7+
8+
If you have a contribution to make, submit a pull request using GitHub.
9+
You need to add a unit test for any source code changes, including bug fixes.
10+
Except for minor fixes, pull requests that do not have a unit test will not be accepted.
11+
If your change drops the code coverage, you may be asked to write additional
12+
unit tests.
13+
14+
You must include the text from the ContributerAgreement.txt file
15+
along with your sign-off verifying that the change originated from you.
16+
17+
## Testing
18+
19+
Python [unittest](https://docs.python.org/3/library/unittest.html) are used for testing sasoptpy.
20+
21+
Automated testing is performed using GitLab for internal development,
22+
but you can run unit tests in a Python environment.
23+
24+
In order to run all the tests, you need to have certain environment variables set:
25+
26+
* CAS Environment Variables:
27+
* __CASHOST__: Host or IP address for CAS sessions
28+
* __CASPORT__: Port number for CAS session
29+
* __AUTHINFO__: The location of your `.authinfo` file, that includes your username and password
30+
* __CASUSERNAME__: User name for the CAS session. This is required if `AUTHINFO` does not exist.
31+
* __CASPASSWORD__: Password for the CAS session. This is required if `AUTHINFO` does not exist.
32+
* SAS Environment Variables:
33+
* __SASHOST__: Host or IP address for SAS installation
34+
* __SASPATH__: Absolute path of the SAS installation in the host
35+
36+
The CAS server should be active at runtime.
37+
38+
You can start running all the unit tests under `tests` folder as follows:
39+
40+
``` shell
41+
python -m unittest discover -s tests/ -p 'test*.py'
42+
```
43+
44+
If you install `coverage` package, you can see the total coverage of the unit tests.
45+
Under `tests` you can run `test_coverage.sh` (or `test_coverage.bat`) to see the final coverage.
46+
HTML pages will be created under `tests/html` folder.
47+
48+
## Documentation
49+
50+
The sasoptpy documentation is generated using [Sphinx](https://www.sphinx-doc.org/en/master/).
51+
Documentation is generated in both HTML (for web view) and LaTeX (for PDF file) formats.
52+
53+
Sphinx handles both function APIs using the source files and Markdown files under `doc` folder.
54+
Configuration for Sphinx can be found under `doc/conf.py` file.
55+
A script is available for generating both formats `doc/makedocs.sh`.
56+
57+
Final sasoptpy documentation is generated using a script at
58+
59+
https://github.com/sertalpbilal/sasoptpy_doc_generator
60+
61+
You can generate the multi-version documentation pages using [`generate_latest.sh`](https://github.com/sertalpbilal/sasoptpy_doc_generator/blob/master/generate_latest.sh) script, found
62+
in the repository.
63+
64+
A [docker image](https://hub.docker.com/r/sertalpbilal/sphinx_dev/dockerfile) is available at Docker Hub
65+
that includes all dependencies.

ContributorAgreement.txt

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
Contributor Agreement
2+
3+
Version 1.1
4+
5+
Contributions to this software are accepted only when they are
6+
properly accompanied by a Contributor Agreement. The Contributor
7+
Agreement for this software is the Developer's Certificate of Origin
8+
1.1 (DCO) as provided with and required for accepting contributions
9+
to the Linux kernel.
10+
11+
In each contribution proposed to be included in this software, the
12+
developer must include a "sign-off" that denotes consent to the
13+
terms of the Developer's Certificate of Origin. The sign-off is
14+
a line of text in the description that accompanies the change,
15+
certifying that you have the right to provide the contribution
16+
to be included. For changes provided in source code control (for
17+
example, via a Git pull request) the sign-off must be included in
18+
the commit message in source code control. For changes provided
19+
in email or issue tracking, the sign-off must be included in the
20+
email or the issue, and the sign-off will be incorporated into the
21+
permanent commit message if the contribution is accepted into the
22+
official source code.
23+
24+
If you can certify the below:
25+
26+
Developer's Certificate of Origin 1.1
27+
28+
By making a contribution to this project, I certify that:
29+
30+
(a) The contribution was created in whole or in part by me and I
31+
have the right to submit it under the open source license
32+
indicated in the file; or
33+
34+
(b) The contribution is based upon previous work that, to the best
35+
of my knowledge, is covered under an appropriate open source
36+
license and I have the right under that license to submit that
37+
work with modifications, whether created in whole or in part
38+
by me, under the same open source license (unless I am
39+
permitted to submit under a different license), as indicated
40+
in the file; or
41+
42+
(c) The contribution was provided directly to me by some other
43+
person who certified (a), (b) or (c) and I have not modified
44+
it.
45+
46+
(d) I understand and agree that this project and the contribution
47+
are public and that a record of the contribution (including all
48+
personal information I submit with it, including my sign-off) is
49+
maintained indefinitely and may be redistributed consistent with
50+
this project or the open source license(s) involved.
51+
52+
then you just add a line saying
53+
54+
Signed-off-by: Random J Developer <[email protected]>
55+
56+
using your real name (sorry, no pseudonyms or anonymous contributions.)

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global-include *.py

0 commit comments

Comments
 (0)