Skip to content

Commit 5769163

Browse files
committed
small fixes
1 parent 7ff0999 commit 5769163

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Diff for: README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# FastVector
22

3-
![Python](https://img.shields.io/badge/python-3.7+-blue)
3+
![Python](https://img.shields.io/badge/python-3.9+-blue)
44
![License](https://camo.githubusercontent.com/890acbdcb87868b382af9a4b1fac507b9659d9bf/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)
5-
[![Build](https://github.com/franneck94/Python-Project-Template-Eng/workflows/ci-test/badge.svg)](https://github.com/franneck94/Python-Project-Template-Eng/actions?query=workflow%3Aci-test)
5+
[![Build](https://github.com/franneck94/Python-Project-Template/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/franneck94/Python-Project-Template/actions/workflows/test.yml)
66
[![codecov](https://codecov.io/gh/franneck94/Python-Project-Template-Eng/branch/master/graph/badge.svg)](https://codecov.io/gh/franneck94/Python-Project-Template-Eng)
77
[![Documentation](https://img.shields.io/badge/ref-Documentation-blue)](https://franneck94.github.io/Python-Project-Template-Eng/)
88

@@ -57,3 +57,9 @@ pytest
5757
# Code Coverage
5858
pytest --cov=fastvector tests --cov-report=html
5959
```
60+
61+
62+
```bash
63+
# Publish to PyPi
64+
By the publish github workflow
65+
```

Diff for: pyproject.toml

-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ classifiers = [
2727
"Operating System :: MacOS",
2828
]
2929
dependencies = [
30-
"requests",
31-
"importlib-metadata; python_version<'3.8'",
3230
"numpy>=1.21.6; python_version<'3.11'",
3331
"numpy>=1.23.2; python_version>='3.11'",
3432
]

Diff for: requirements-dev.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Runtime requirements
22
--requirement requirements.txt
33

4-
build
54
setuptools>=67.7.1
65

76
# Testing

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Runtime requirements
2-
numpy
2+
numpy>=1.21.6

0 commit comments

Comments
 (0)