File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 31
31
.test :
32
32
stage : test
33
33
script :
34
- - pip3 install --user pytest numpy
34
+ - pip3 install --user pytest
35
35
- rm -r objectbox # todo this is ugly; let's copy required files in a sub-folder instead?
36
36
- pip3 install --user --force-reinstall dist/*.whl # Artifacts from the previous stage (downloaded by default)
37
37
- ${PYTHON} -m pytest
Original file line number Diff line number Diff line change
1
+ ** Check-list**
2
+
3
+ - [ ] Update version in ` objectbox/__init__.py `
4
+ - [ ] Check/update dependencies:
5
+ - [ ] ` requirements.txt ` : test and increase max. supported versions
6
+ - [ ] Update the C library version in ` download-c-lib.py ` and ` objectbox/c.py `
7
+ - [ ] Check GitLab CI passes on main branch
8
+ - [ ] Update ` README.md ` : ensure all info is up-to-date.
9
+ - [ ] Commit and push to GitHub
10
+ - [ ] Clean, run tests and build: ` make all `
11
+ - [ ] Publish to PyPI: ` make publish `
12
+ - For this, you will need our login data for https://pypi.org/account/login - it can be found in 1pass
13
+ - [ ] Create a GitHub release
14
+ - [ ] Announce in GitHub issues, create release announcement/blog post.
Original file line number Diff line number Diff line change 50
50
51
51
install_requires = [
52
52
'flatbuffers==23.5.26' ,
53
+ 'numpy'
53
54
],
54
55
55
56
packages = setuptools .find_packages (),
You can’t perform that action at this time.
0 commit comments