Skip to content

Commit

Permalink
add missing package dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
foxBMS committed Sep 5, 2023
1 parent 820155e commit 943578c
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ variables:
ErrorActionPreference: "STOP"
MinicondaBaseEnvironmentActivateScript: C:\ProgramData\Miniconda3\Scripts\activate
CondaEnvironmentName: basd-devel-env-11
CondaPackageTestEnvironmentName: dummy
CondaPackageTestEnvironmentName: dummy-$CI_COMMIT_SHORT_SHA
TestCells: $CI_PROJECT_DIR\tests\cells
TestCellExampleCell: $CI_PROJECT_DIR\tests\cells\Example_Cell.json
TestProfiles: $CI_PROJECT_DIR\tests\profiles
Expand Down
9 changes: 8 additions & 1 deletion docs/development/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Calendar Versioning](https://calver.org/).

[2023.09.0] 2023-09-05
-----------------------

Fixed

- Fixed package dependencies.

[2023.08.0] 2023-08-30
----------------------

Added
-----

- Initial release
- Initial release.
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
cadquery>=2.2.0
click>=8.1.3
colorama>=0.4.6
furo==2023.8.19
joblib>=1.2.0
jsonschema>=4.17.3
Expand Down
28 changes: 16 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "basd"
authors = [
{ name = "The foxBMS Team", email = "[email protected]" },
]
authors = [{ name = "The foxBMS Team", email = "[email protected]" }]
dynamic = ["version", "description"]
requires-python = ">=3.10"

Expand All @@ -25,19 +23,25 @@ classifiers = [
]

dependencies = [
"click>=8.1.3",
"scipy>=1.10.1",
"pandas>=2.0.0",
"numpy>=1.24.2",
"matplotlib>=3.7.1",
"cadquery>=2.2.0",
"jsonschema>=4.17.3",
"click>=8.1.3",
"colorama>=0.4.6",
"joblib>=1.2.0",
"jsonschema>=4.17.3",
"matplotlib>=3.7.1",
"numpy>=1.24.2",
"pandas>=2.0.0",
"platformdirs>=3.5.0",
"scipy>=1.10.1",
]
[project.optional-dependencies]
test = ["pytest >=2.7.3", "pytest-cov"]
doc = ["sphinx", "sphinxcontrib-programoutput", "furo", "sphinxcontrib-spelling"]
doc = [
"sphinx",
"sphinxcontrib-programoutput",
"furo",
"sphinxcontrib-spelling",
]
dev = ["black==23.3.0", "isort==5.12.0", "pylint==2.17.3", "mypy==1.2.0"]

[project.scripts]
Expand Down Expand Up @@ -91,12 +95,12 @@ cache_dir = "build/.mypy_cache"
exclude = ["src/basd/vendor/"]

[tool.pylint.master]
init-hook="sys.path.append('src')"
init-hook = "sys.path.append('src')"
extension-pkg-allow-list = ""
fail-under = 10
ignore = "CVS"
ignore-patterns = ""
ignore-paths = [ "^src/basd/vendor/.*$"]
ignore-paths = ["^src/basd/vendor/.*$"]
jobs = 1
limit-inference-results = 100
load-plugins = ""
Expand Down

0 comments on commit 943578c

Please sign in to comment.