You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -22,4 +22,33 @@ Flimflam requires the following Python packages:
401
-
The following optional packages are required to run Flimflam's unit tests:
402
-
403
-
- [pytest](https://docs.pytest.org/en/stable/) - Flimflam's unit tests are written using pytest
404
-
-- [pytest-cov](https://pypi.org/project/pytest-cov/) - Adds test coverage stats to unit testing
405
-
\ No newline at end of file
406
-
+- [pytest-cov](https://pypi.org/project/pytest-cov/) - Adds test coverage stats to unit testing
407
-
+
408
-
+## Installation
409
-
+- Clone the repo ``git clone repo``
410
-
+- Check everything runs by running ``python -m pytest`` in the root directory
411
-
+- Hurray
412
-
+
413
-
+## Contributing
414
-
+- Create an issue [here](https://github.com/Onoddil/python-intermediate-inflammation/issues)
415
-
+ - What works, what does not? You tell me
416
-
+- Randomly edit some code and see if it improves things, then submit a [pull request](https://github.com/Onoddil/python-intermediate-inflammation/pulls)
417
-
+- Just yell at me while I edit the code, pair programmer style!
418
-
+
419
-
+## Getting Help
420
-
+- Nice try
421
-
+
422
-
+## Credits
423
-
+- Directed by Michael Bay
424
-
+
425
-
+## Citation
426
-
+Please cite [J. F. W. Herschel, 1829, MmRAS, 3, 177](https://ui.adsabs.harvard.edu/abs/1829MmRAS...3..177H/abstract) if you used this work in your day-to-day life.
427
-
+Please cite [C. Herschel, 1787, RSPT, 77, 1](https://ui.adsabs.harvard.edu/abs/1787RSPT...77....1H/abstract) if you actually use this for scientific work.
428
-
+
429
-
+## License
430
-
+This source code is protected under international copyright law. All rights
431
-
+reserved and protected by the copyright holders.
432
-
+This file is confidential and only available to authorized individuals with the
433
-
+permission of the copyright holders. If you encounter this file and do not have
434
-
+permission, please contact the copyright holders and delete this file.
435
-
\ No newline at end of file
436
-
```
437
-
438
-
So now we have added a tag, we need this reflected in our Github repository.
439
-
You can push this tag to your remote by doing:
440
-
441
-
```bash
442
-
$ git push origin v1.0.0
443
-
```
444
-
445
-
::::::::::::::::::::::::::::::::::::::::: callout
446
-
447
-
## What is a Version Number Anyway?
448
-
449
-
Software version numbers are everywhere,
450
-
and there are many different ways to do it.
451
-
A popular one to consider is [**Semantic Versioning**](https://semver.org/),
452
-
where a given version number uses the format MAJOR.MINOR.PATCH.
453
-
You increment the:
454
-
455
-
- MAJOR version when you make incompatible API changes
456
-
- MINOR version when you add functionality in a backwards compatible manner
457
-
- PATCH version when you make backwards compatible bug fixes
458
-
459
-
You can also add a hyphen followed by characters to denote a pre-release version,
460
-
e.g. 1.0.0-alpha1 (first alpha release) or 1.2.3-beta4 (fourth beta release)
@@ -22,4 +22,33 @@ Flimflam requires the following Python packages:
76
+
The following optional packages are required to run Flimflam's unit tests:
77
+
78
+
- [pytest](https://docs.pytest.org/en/stable/) - Flimflam's unit tests are written using pytest
79
+
-- [pytest-cov](https://pypi.org/project/pytest-cov/) - Adds test coverage stats to unit testing
80
+
\ No newline at end of file
81
+
+- [pytest-cov](https://pypi.org/project/pytest-cov/) - Adds test coverage stats to unit testing
82
+
+
83
+
+## Installation
84
+
+- Clone the repo ``git clone repo``
85
+
+- Check everything runs by running ``python -m pytest`` in the root directory
86
+
+- Hurray
87
+
+
88
+
+## Contributing
89
+
+- Create an issue [here](https://github.com/Onoddil/python-intermediate-inflammation/issues)
90
+
+ - What works, what does not? You tell me
91
+
+- Randomly edit some code and see if it improves things, then submit a [pull request](https://github.com/Onoddil/python-intermediate-inflammation/pulls)
92
+
+- Just yell at me while I edit the code, pair programmer style!
93
+
+
94
+
+## Getting Help
95
+
+- Nice try
96
+
+
97
+
+## Credits
98
+
+- Directed by Michael Bay
99
+
+
100
+
+## Citation
101
+
+Please cite [J. F. W. Herschel, 1829, MmRAS, 3, 177](https://ui.adsabs.harvard.edu/abs/1829MmRAS...3..177H/abstract) if you used this work in your day-to-day life.
102
+
+Please cite [C. Herschel, 1787, RSPT, 77, 1](https://ui.adsabs.harvard.edu/abs/1787RSPT...77....1H/abstract) if you actually use this for scientific work.
103
+
+
104
+
+## License
105
+
+This source code is protected under international copyright law. All rights
106
+
+reserved and protected by the copyright holders.
107
+
+This file is confidential and only available to authorized individuals with the
108
+
+permission of the copyright holders. If you encounter this file and do not have
109
+
+permission, please contact the copyright holders and delete this file.
110
+
\ No newline at end of file
111
+
```
112
+
113
+
So now we have added a tag, we need this reflected in our Github repository.
114
+
You can push this tag to your remote by doing:
115
+
116
+
```bash
117
+
$ git push origin v1.0.0
118
+
```
119
+
120
+
::::::::::::::::::::::::::::::::::::::::: callout
121
+
122
+
## What is a Version Number Anyway?
123
+
124
+
Software version numbers are everywhere,
125
+
and there are many different ways to do it.
126
+
A popular one to consider is [**Semantic Versioning**](https://semver.org/),
127
+
where a given version number uses the format MAJOR.MINOR.PATCH.
128
+
You increment the:
129
+
130
+
- MAJOR version when you make incompatible API changes
131
+
- MINOR version when you add functionality in a backwards compatible manner
132
+
- PATCH version when you make backwards compatible bug fixes
133
+
134
+
You can also add a hyphen followed by characters to denote a pre-release version,
135
+
e.g. 1.0.0-alpha1 (first alpha release) or 1.2.3-beta4 (fourth beta release)
0 commit comments